Federal Contractor

BFBC, LLC Federal Contract Obligations (Last 5 Years)

BFBC, LLC is a federal contractor with 28 recorded award actions and $159.24 million in obligated funding over the last five years, concentrated in Army highway, street, and bridge construction work.

BFBC, LLC, CAGE 853G5 and UEI PTZXAS7WKA23, received all recorded obligations in the last five years from the Department of the Army. Its award history is tied to NAICS 237310, Highway, Street, and Bridge Construction, with total obligated value of $159,240,424.06 across 28 actions.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual totals include negative values in 2024 and 2025, which reflect obligation adjustments in the underlying FPDS data.

CAGE Code
853G5
UEI
PTZXAS7WKA23
Total Obligated
159.24 million
159,240,424.06
Award Actions
28
Average Action Value
5,687,158.00

About BFBC, LLC federal contract activity

BFBC, LLC (CAGE 853G5, UEI PTZXAS7WKA23) recorded 28 FPDS awards over the last 5 years, with total obligated value of $159.24 million and an average award value of about $5.69 million. Reported obligations are concentrated in a limited number of awards, and the annual series includes negative obligation values in 2024 and 2025, which can materially affect period totals. The profile indicates a single dominant federal customer and a focused construction-oriented contracting pattern.

Agency mix and customer concentration

All reported obligations in the analysis window are tied to the Department of the Army, which accounts for $159.24 million across 28 awards. This indicates complete concentration of federal business with one agency rather than a diversified customer base. The lack of agency diversification increases exposure to agency-specific funding, mission, and procurement cycles.

Industry profile based on NAICS activity

BFBC, LLC’s obligations are entirely classified under NAICS 237310, Highway, Street, and Bridge Construction, with $159.24 million and 28 awards in that code. The portfolio is therefore highly specialized and aligned to civil works and infrastructure construction activity. No secondary NAICS categories are evident in the provided data.

Annual contract trend over the analysis window

Annual obligations were heavily weighted to 2022 at $175.85 million, followed by much smaller positive activity in 2021 and 2023. Reported totals turned negative in 2024 and 2025, with -$3.76 million and -$21.16 million respectively, suggesting substantial de-obligations, corrections, or contract adjustments. The recent negative trend offsets earlier positive activity and should be interpreted as a net funding movement rather than new award volume alone.

How to interpret this page

This summary is based on FPDS-observed obligations for BFBC, LLC matched to CAGE 853G5 and UEI PTZXAS7WKA23 over the last 5 years. Agency, NAICS, and annual trend statements reflect the provided aggregate totals and award counts only; no assumptions were made about contract vehicle, place of performance, or scope beyond the supplied fields. Negative annual obligations are reported as given and may reflect de-obligations or accounting adjustments within FPDS records.

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 = '853G5'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
2100 DEPT OF THE ARMY 159,240,424.06 159.24 million 28

Insight

BFBC, LLC’s 5-year obligations are fully concentrated in the DEPT OF THE ARMY, which accounts for 100% of the firm’s $159.24 million in total obligated value. The vendor received 28 awards during the period, indicating repeated Army business rather than a diversified agency portfolio. This concentration suggests the firm’s federal activity is entirely dependent on a single agency relationship over the analysis window.

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 = '853G5'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 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
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 159,240,424.06 159.24 million 28

Insight

Over the last 5 years, BFBC, LLC’s obligations are fully concentrated in NAICS 237310, Highway, Street, and Bridge Construction. The firm received 28 awards in this single NAICS, accounting for the entire $159.24 million obligated in the period, which indicates a highly focused contracting profile. This concentration suggests the vendor’s federal work has been limited to one primary construction market segment, with no observable diversification across other NAICS codes in the provided data.

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 = '853G5'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 -21,160,205.62 -21.16 million 9
2024 -3,764,725.21 -3.76 million 6
2023 269,404.00 269.40 thousand 4
2022 175,850,000.00 175.85 million 3
2021 8,045,950.89 8.05 million 6

Insight

BFBC, LLC’s 5-year obligation profile is highly concentrated in 2022, which accounts for 175.85 million of the 159.24 million total obligated across the period. Awards were otherwise distributed across 2021, 2023, 2024, and 2025, but annual obligations were materially lower and the most recent two years are negative, indicating net deobligations in those periods. Award volume increased to 9 in 2025 from 6 in 2024, yet the negative obligation trend suggests reduced net funding despite higher award count.

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