Federal Contractor

VIGOR MARINE LLC Federal Contract Obligations (Last 5 Years)

Federal procurement profile for VIGOR MARINE LLC (CAGE 4PGG4, UEI L7ZETMM4M9R3) showing $1.79 billion in obligations across 976 awards over the last 5 years.

VIGOR MARINE LLC’s federal award history is concentrated in ship building and repairing, with 948 actions and $1.78 billion obligated under NAICS 336611. The Department of the Navy accounts for most activity, with 863 awards and $1.73 billion in obligations; the Army, Coast Guard, Maritime Administration, and NOAA make up the remaining top agency relationships.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals, award counts, and annual trend figures reflect the last 5 years of readable FPDS-observed obligations and may not include every modification or deobligation detail.

CAGE Code
4PGG4
UEI
L7ZETMM4M9R3
Total Obligated
1.79 billion
1,790,885,486.83
Award Actions
976
Average Action Value
1,834,923.65

About VIGOR MARINE LLC federal contract activity

VIGOR MARINE LLC (CAGE 4PGG4, UEI L7ZETMM4M9R3) received 976 FPDS-recorded awards totaling $1.79 billion over the last 5 years, with an average award value of $1.83 million. The vendor’s obligation profile is concentrated in a relatively high volume of awards, indicating sustained federal procurement activity rather than reliance on a small number of large transactions.

Agency mix and customer concentration

The Department of the Navy dominates the customer mix, accounting for $1.73 billion across 863 awards, or the overwhelming share of total obligations. The remaining activity is distributed across the Department of the Army, U.S. Coast Guard, Maritime Administration, and NOAA, each representing a much smaller portion of spend and suggesting a primarily Navy-centered federal footprint with limited secondary diversification.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, is the core contracting category, representing $1.78 billion across 948 awards and closely mirroring the vendor’s overall obligation total. Other support activities for water transportation appears as a distant secondary category at $7.56 million, while Security Guards and Patrol Services is immaterial at $11.54 thousand, indicating that the vendor’s federal work is overwhelmingly concentrated in ship construction and repair.

Annual contract trend over the analysis window

Annual obligations peaked in 2023 at $483.71 million, followed by $399.12 million in 2024 and $315.49 million in 2025, showing a decline from the 2023 high but still substantial yearly volume. The five-year pattern rises sharply from 2021 levels of $194.72 million, indicating a strong expansion in contract value beginning in 2022 and remaining elevated through the end of the analysis window.

How to interpret this page

This profile is based on FPDS obligations and award counts associated with the vendor’s CAGE code and UEI over the last 5 years. Agency, NAICS, and annual trend sections reflect recorded obligations in the provided dataset only and should be interpreted as procurement activity captured in FPDS, not necessarily the vendor’s full commercial business.

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 = '4PGG4'
        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
1700 DEPT OF THE NAVY 1,728,748,286.44 1.73 billion 863
2100 DEPT OF THE ARMY 42,492,290.20 42.49 million 77
7008 U.S. COAST GUARD 10,540,552.49 10.54 million 2
6938 MARITIME ADMINISTRATION 7,562,079.70 7.56 million 26
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 1,542,278.00 1.54 million 8

Insight

Over the last 5 years, VIGOR MARINE LLC received $1.79 billion across 976 awards, with a highly concentrated obligation profile. The DEPT OF THE NAVY accounted for $1.73 billion and 863 awards, representing the clear dominant funding source for this vendor. Other agencies contributed comparatively small amounts, led by the DEPT OF THE ARMY at $42.49 million across 77 awards, followed by the U.S. COAST GUARD, MARITIME ADMINISTRATION, and NOAA at materially lower obligation levels.

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 = '4PGG4'
        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
336611 SHIP BUILDING AND REPAIRING 1,783,311,871.13 1.78 billion 948
488390 OTHER SUPPORT ACTIVITIES FOR WATER TRANSPORTATION 7,562,079.70 7.56 million 26
561612 SECURITY GUARDS AND PATROL SERVICES 11,536.00 11.54 thousand 2

Insight

VIGOR MARINE LLC’s 5-year obligations are highly concentrated in NAICS 336611, Ship Building and Repairing, which accounts for $1.78 billion of the $1.79 billion total obligated and 948 of 976 awards. A much smaller share is distributed to NAICS 488390, Other Support Activities for Water Transportation, at $7.56 million across 26 awards, with only negligible obligations in NAICS 561612, Security Guards and Patrol Services, at $11.54 thousand across 2 awards. This pattern indicates a strongly specialized award profile centered on ship construction and repair 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 = '4PGG4'
        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 315,491,613.04 315.49 million 158
2024 399,115,881.55 399.12 million 151
2023 483,712,303.67 483.71 million 267
2022 397,843,525.81 397.84 million 210
2021 194,722,162.76 194.72 million 190

Insight

Over the last 5 years, VIGOR MARINE LLC (CAGE 4PGG4) obligated $1.79 billion across 976 awards, averaging $1.83 million per award. Obligations are concentrated in 2023 and 2024, which together account for about 49% of the 5-year total, with 2023 representing the peak year at $483.71 million. The annual pattern shows a sharp increase from 2021 to 2023, followed by a decline in 2024 and 2025, while award counts remained comparatively elevated, indicating continued contract activity despite lower annual 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.