The vendor's activity was concentrated in research and development and biotechnology-related work, with the largest NAICS values in 541715 and 541714. Agency results were led by the Department of the Navy, while the Administration for Strategic Preparedness and Response accounted for the largest negative obligated total in the period.
Federal Contractor
ADVANCED TECHNOLOGY INTERNATIONAL Federal Contract Obligations (Last Year)
ADVANCED TECHNOLOGY INTERNATIONAL (CAGE 1G3V8, UEI LDMMF472BB93) recorded -247.76 million in obligated value across 163 award actions in the last full year.
Figures reflect the last full year and may include both positive and negative obligated amounts, which can lower the net total.
About ADVANCED TECHNOLOGY INTERNATIONAL federal contract activity
ADVANCED TECHNOLOGY INTERNATIONAL recorded -$247.76 million in obligated value across 163 awards during the last full year, for an average award value of -$1.52 million. The negative total indicates net deobligations or downward obligation adjustments over the period rather than straightforward new funding growth.
Agency mix and customer concentration
Obligations were concentrated at the Department of the Navy, which accounted for $32.50 million across 112 awards, making it the most active customer by award count and positive obligated value. The Defense Logistics Agency added $6.04 million across 24 awards, while the Administration for Strategic Preparedness and Response showed a large negative obligated total of -$286.30 million across 27 awards, which materially drove the overall net result downward.
Industry profile based on NAICS activity
The award profile is anchored in R&D activity, led by NAICS 541715 with $39.12 million across 115 awards. Offsetting this were large negative totals in biotechnology-related work, including NAICS 541714 at -$200.64 million and NAICS 325414 at -$85.66 million, indicating substantial reversals or reductions in previously obligated funding within those segments.
Annual contract trend over the analysis window
The annual trend shows a single-year view for 2025, with total obligated value of -$247.76 million across 163 awards. Because only one year is available in the analysis window, this page supports level analysis rather than year-over-year comparison.
How to interpret this page
This summary uses FPDS award obligation data tied to CAGE 1G3V8 and UEI LDMMF472BB93 for the last full year. Top agencies and NAICS groupings are ranked by total obligated value, and the annual trend reflects the same obligation measure for the reporting year shown in the dataset.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1G3V8'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 32,501,148.01 | 32.50 million | 112 |
| 97AS | DEFENSE LOGISTICS AGENCY | 6,039,476.39 | 6.04 million | 24 |
| 7505 | ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE | -286,300,363.00 | -286.30 million | 27 |
Insight
Over the last full year, ADVANCED TECHNOLOGY INTERNATIONAL (CAGE 1G3V8) recorded 163 awards and -$247.76 million in total obligated value, indicating that overall vendor activity was dominated by deobligations or negative adjustments. Obligation activity was concentrated in the DEPT OF THE NAVY, which accounted for $32.50 million across 112 awards, followed by the DEFENSE LOGISTICS AGENCY with $6.04 million across 24 awards. The largest negative value came from the ADMINISTRATION FOR STRATEGIC PREPAREDNESS AND RESPONSE at -$286.30 million across 27 awards, which drove the vendor’s net total into negative territory.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1G3V8'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 39,117,616.13 | 39.12 million | 115 |
| 541330 | ENGINEERING SERVICES | -61,196.80 | -61.20 thousand | 8 |
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | -515,794.93 | -515.79 thousand | 13 |
| 325414 | BIOLOGICAL PRODUCT (EXCEPT DIAGNOSTIC) MANUFACTURING | -85,655,364.23 | -85.66 million | 18 |
| 541714 | RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY (EXCEPT NANOBIOTECHNOLOGY) | -200,644,998.77 | -200.64 million | 9 |
Insight
During the last full year, ADVANCED TECHNOLOGY INTERNATIONAL’s obligations were highly concentrated in NAICS 541715, which accounted for 115 awards and $39.12 million obligated. The remaining obligation volume was dominated by negative adjustments in NAICS 541714 (-$200.64 million) and 325414 (-$85.66 million), indicating that net obligation activity was driven down materially in those categories. Smaller activity was spread across 541712, 541330, and other codes, but these represented comparatively limited award counts and dollars.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1G3V8'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | -247,759,738.60 | -247.76 million | 163 |
Insight
Over the last full year, ADVANCED TECHNOLOGY INTERNATIONAL (CAGE 1G3V8) recorded -$247.76 million in total obligated value across 163 awards, with an average award value of -$1.52 million. The activity is concentrated entirely in FY2025 within the selected 1-year window, indicating a single-year funding pattern rather than a multi-year trend. The negative obligated total should be interpreted in context of deobligations or downward adjustments reflected in FPDS obligations data.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.
Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.