Federal Contractor

RANGE GENERATION NEXT LLC Federal Contract Obligations (Last 10 Years)

Federal procurement profile for RANGE GENERATION NEXT LLC (CAGE 6WGJ0, UEI E6J8JNNJ6AA5) covering obligations over the last 10 years.

RANGE GENERATION NEXT LLC recorded 868 award actions and $2.08 billion in obligated dollars over the last 10 years, with an average action value of $2,392,356.29. Most of the activity was with the Department of the Air Force and the Department of the Army, and the work was concentrated in engineering services and related research and development.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the selected 10-year analysis window and may include negative obligations in agency-level reporting.

CAGE Code
6WGJ0
UEI
E6J8JNNJ6AA5
Total Obligated
2.08 billion
2,076,565,263.76
Award Actions
868
Average Action Value
2,392,356.29

About RANGE GENERATION NEXT LLC federal contract activity

RANGE GENERATION NEXT LLC (CAGE 6WGJ0, UEI E6J8JNNJ6AA5) received $2.08 billion across 868 FPDS-reported awards over the last 10 years, for an average award value of $2.39 million. The profile is heavily weighted toward defense contracting, with the Department of the Air Force accounting for the majority of obligations.

Agency mix and customer concentration

The Department of the Air Force is the dominant customer, with $1.66 billion across 712 awards, or roughly 80% of total obligated value. The Department of the Army is the second-largest agency at $417.02 million across 151 awards, while DCMA shows a small negative obligated total of $3.12 million across 5 awards, consistent with deobligations or closeout adjustments rather than new procurement volume.

Industry profile based on NAICS activity

The vendor’s activity is concentrated in NAICS 541330, Engineering Services, which represents $1.66 billion across 717 awards and aligns closely with the Air Force-led customer base. NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), contributes the remaining $417.02 million across 151 awards, indicating a narrower secondary concentration in technical R&D work.

Annual contract trend over the analysis window

Annual obligations remained in the mid-hundreds of millions across the most recent years shown, ranging from $208.29 million in 2025 to a high of $289.57 million in 2021. Award counts declined from 144 in 2022 to 81 in 2025, suggesting fewer actions in the latest year despite continued material obligated value.

How to interpret this page

This summary uses FPDS award records associated with CAGE 6WGJ0 and UEI E6J8JNNJ6AA5 over the last 10 years. Agency, NAICS, and annual figures reflect obligated dollars and award counts as reported in the provided dataset; negative obligations are retained as reported and may reflect deobligations or adjustments.

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 = '6WGJ0'
        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
5700 DEPT OF THE AIR FORCE 1,662,667,034.97 1.66 billion 712
2100 DEPT OF THE ARMY 417,016,848.09 417.02 million 151
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -3,118,619.30 -3.12 million 5

Insight

Over the last 10 years, RANGE GENERATION NEXT LLC’s obligations are highly concentrated in the Department of the Air Force, which accounts for $1.66 billion of the $2.08 billion total and 712 of 868 awards. The Department of the Army is the second-largest customer at $417.02 million across 151 awards, indicating a secondary but materially smaller concentration. DCMA shows a net negative obligated amount of $3.12 million across 5 awards, which is immaterial relative to the overall obligation base.

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 = '6WGJ0'
        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
541330 ENGINEERING SERVICES 1,659,548,415.67 1.66 billion 717
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 417,016,848.09 417.02 million 151

Insight

Over the last 10 years, RANGE GENERATION NEXT LLC’s obligations are highly concentrated in NAICS 541330, Engineering Services, which accounts for $1.66 billion across 717 awards, or roughly 80% of total obligations. NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, represents the remaining $417.02 million across 151 awards, indicating a secondary but still material line of business. The distribution suggests a strong procurement focus on engineering services with a smaller share directed to R&D activities.

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 = '6WGJ0'
        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 208,285,073.25 208.29 million 81
2024 248,685,521.24 248.69 million 111
2023 287,037,455.88 287.04 million 116
2022 255,971,442.97 255.97 million 144
2021 289,567,285.76 289.57 million 91
2020 268,911,962.90 268.91 million 84
2019 142,028,389.57 142.03 million 97
2018 232,977,028.99 232.98 million 68
2017 143,101,103.20 143.10 million 76

Insight

Over the last 10 years, RANGE GENERATION NEXT LLC obligated $2.08 billion across 868 awards, averaging $2.39 million per award. Annual obligations are concentrated in the $200 million to $290 million range for most years, with peaks in 2021 ($289.57 million) and 2023 ($287.04 million) and a notable dip in 2017 and 2019 at about $143 million each. Award volume also varied, reaching a high of 144 awards in 2022, while 2025 reflects a partial-year level of $208.29 million across 81 awards.

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.