Federal Contractor

CENTRAL PLATEAU CLEANUP COMPANY LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for CENTRAL PLATEAU CLEANUP COMPANY LLC (CAGE 86TK6, UEI J4TDNRDMRMZ3) covering awards in the last 10 years.

CENTRAL PLATEAU CLEANUP COMPANY LLC recorded $2.88 billion in obligated contract value across 223 award actions over the last 10 years, for an average action value of $12.91 million. Its federal activity is entirely with the Department of Energy and is concentrated in NAICS 562910, Remediation Services.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligations in the current period show 2025 at $614.35 million, 2024 at $460.85 million, 2023 at $687.24 million, 2022 at $484.19 million, and 2021 at $627.39 million.

CAGE Code
86TK6
UEI
J4TDNRDMRMZ3
Total Obligated
2.88 billion
2,879,387,477.53
Award Actions
223
Average Action Value
12,912,051.46

About CENTRAL PLATEAU CLEANUP COMPANY LLC federal contract activity

CENTRAL PLATEAU CLEANUP COMPANY LLC (CAGE 86TK6, UEI J4TDNRDMRMZ3) recorded 223 FPDS awards totaling 2.88 billion over the last 10 years, for an average award value of 12.91 million. The obligation profile is concentrated enough to indicate sustained federal contracting activity at a substantial scale.

Agency mix and customer concentration

All identified obligations in the analysis window are attributed to the Department of Energy (agency 8900), which accounts for the full 2.88 billion and all 223 awards. This indicates a highly concentrated customer base with no diversification across other agencies in the observed data.

Industry profile based on NAICS activity

The vendor’s obligations are entirely concentrated in NAICS 562910, Remediation Services, with 2.88 billion across 223 awards. The mix suggests the company’s federal work has been focused on environmental remediation rather than a broader set of professional or construction services.

Annual contract trend over the analysis window

Annual obligations were variable but consistently high across the recent five years shown, ranging from 460.85 million in 2024 to 687.24 million in 2023. Award volume also fluctuated, with the highest count in 2025 at 62 awards and the lowest in 2023 at 33 awards, indicating differences in contract sizing and timing year to year.

How to interpret this page

This summary is based on FPDS-observed obligations associated with CAGE 86TK6 and UEI J4TDNRDMRMZ3 during the last 10 years. Agency, NAICS, and annual trend figures reflect the provided FPDS aggregation and are limited to the data shown in the analysis window.

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 = '86TK6'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
8900 ENERGY, DEPARTMENT OF 2,879,387,477.53 2.88 billion 223

Insight

Over the last 10 years, CENTRAL PLATEAU CLEANUP COMPANY LLC’s obligated dollars are fully concentrated within the Department of Energy, which accounts for the full $2.88 billion in obligations and all 223 awards. This indicates a single-agency procurement profile with no observed distribution across other agencies in the provided data. The average award value of $12.91 million is consistent with a portfolio of relatively large, repeat awards within one department.

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 = '86TK6'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
562910 REMEDIATION SERVICES 2,879,387,477.53 2.88 billion 223

Insight

Over the last 10 years, CENTRAL PLATEAU CLEANUP COMPANY LLC’s obligated dollars are fully concentrated in NAICS 562910, Remediation Services. The company received 223 awards under this single NAICS, totaling $2.88 billion, indicating a highly concentrated federal work profile with no diversification across other NAICS reported in this window. The average award value of $12.91 million suggests a pattern of substantial remediation contracts rather than a broad mix of smaller obligations.

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 = '86TK6'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 614,354,275.85 614.35 million 62
2024 460,850,073.85 460.85 million 44
2023 687,235,608.43 687.24 million 33
2022 484,188,495.51 484.19 million 37
2021 627,393,215.89 627.39 million 42
2020 4,865,808.00 4.87 million 4
2019 500,000.00 500.00 thousand 1

Insight

CENTRAL PLATEAU CLEANUP COMPANY LLC (CAGE 86TK6) has obligated activity totaling $2.88 billion across 223 awards over the last 10 years, with a high average award value of $12.91 million. Obligations are heavily concentrated in FY2021-FY2025, which account for nearly all reported value, while FY2019 and FY2020 are minimal at $0.5 million and $4.87 million, respectively. Annual obligations remain high and relatively sustained in recent years, peaking in FY2023 at $687.24 million, with FY2024 and FY2025 also above $460 million. Award volume increased to 62 awards in FY2025, indicating continued activity despite year-to-year fluctuations in obligated dollars.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.