| export const DARK_FLEET_VESSELS = [ |
| { |
| id: 'DFE-001', |
| name: 'PACIFIC MERIDIAN', |
| imo: '9821045', |
| flag: 'Unknown', |
| type: 'VLCC', |
| dwt: 300000, |
| gapDuration: '14h 22m', |
| lastPosition: '26.1°N 55.8°E — Persian Gulf', |
| aisGapStart: '2026-04-14 02:14 UTC', |
| suspicionScore: 94, |
| cargoEstimate: { |
| commodity: 'Crude Oil', |
| volumeMT: 285000, |
| pricePerMT: 530, |
| totalValue: 151050000, |
| }, |
| insuranceExposure: { |
| hullValue: 85000000, |
| cargoInsurance: 151050000, |
| liabilityP_I: 1000000000, |
| totalExposure: 1236050000, |
| sanctionsVoidRisk: true, |
| }, |
| sanctionsPenalty: { |
| usTreasury: 1280000, |
| euRegulation: 940000, |
| ukOfsi: 760000, |
| totalPotentialFine: 2980000, |
| criminalExposure: true, |
| }, |
| status: 'Critical', |
| darkFleetFlag: true, |
| priorSanctionedPorts: ['Bandar Abbas', 'Kharg Island'], |
| }, |
| { |
| id: 'DFE-002', |
| name: 'URAL SEA QUEEN', |
| imo: '9654321', |
| flag: 'Comoros', |
| type: 'Suezmax', |
| dwt: 160000, |
| gapDuration: '9h 11m', |
| lastPosition: '37.8°N 23.1°E — Black Sea exit', |
| aisGapStart: '2026-04-14 06:45 UTC', |
| suspicionScore: 81, |
| cargoEstimate: { |
| commodity: 'Crude Oil (Russian)', |
| volumeMT: 145000, |
| pricePerMT: 420, |
| totalValue: 60900000, |
| }, |
| insuranceExposure: { |
| hullValue: 48000000, |
| cargoInsurance: 60900000, |
| liabilityP_I: 500000000, |
| totalExposure: 608900000, |
| sanctionsVoidRisk: true, |
| }, |
| sanctionsPenalty: { |
| usTreasury: 840000, |
| euRegulation: 610000, |
| ukOfsi: 480000, |
| totalPotentialFine: 1930000, |
| criminalExposure: false, |
| }, |
| status: 'High', |
| darkFleetFlag: true, |
| priorSanctionedPorts: ['Novorossiysk', 'Primorsk'], |
| }, |
| { |
| id: 'DFE-003', |
| name: 'ORIENT MIRAGE', |
| imo: '9112233', |
| flag: 'Palau', |
| type: 'Aframax', |
| dwt: 115000, |
| gapDuration: '6h 55m', |
| lastPosition: '3.1°N 103.4°E — South China Sea', |
| aisGapStart: '2026-04-14 08:30 UTC', |
| suspicionScore: 73, |
| cargoEstimate: { |
| commodity: 'Petrochemicals', |
| volumeMT: 98000, |
| pricePerMT: 680, |
| totalValue: 66640000, |
| }, |
| insuranceExposure: { |
| hullValue: 32000000, |
| cargoInsurance: 66640000, |
| liabilityP_I: 300000000, |
| totalExposure: 398640000, |
| sanctionsVoidRisk: false, |
| }, |
| sanctionsPenalty: { |
| usTreasury: 410000, |
| euRegulation: 280000, |
| ukOfsi: 210000, |
| totalPotentialFine: 900000, |
| criminalExposure: false, |
| }, |
| status: 'Medium', |
| darkFleetFlag: false, |
| priorSanctionedPorts: [], |
| }, |
| { |
| id: 'DFE-004', |
| name: 'GUINEA MARINER', |
| imo: '9445566', |
| flag: 'Cameroon', |
| type: 'Handysize Tanker', |
| dwt: 48000, |
| gapDuration: '21h 05m', |
| lastPosition: '-1.3°N 8.7°E — Gulf of Guinea', |
| aisGapStart: '2026-04-13 17:20 UTC', |
| suspicionScore: 88, |
| cargoEstimate: { |
| commodity: 'Unknown / Refined Products', |
| volumeMT: 40000, |
| pricePerMT: 590, |
| totalValue: 23600000, |
| }, |
| insuranceExposure: { |
| hullValue: 15000000, |
| cargoInsurance: 23600000, |
| liabilityP_I: 200000000, |
| totalExposure: 238600000, |
| sanctionsVoidRisk: false, |
| }, |
| sanctionsPenalty: { |
| usTreasury: 210000, |
| euRegulation: 160000, |
| ukOfsi: 130000, |
| totalPotentialFine: 500000, |
| criminalExposure: false, |
| }, |
| status: 'High', |
| darkFleetFlag: true, |
| priorSanctionedPorts: ['Lomé'], |
| }, |
| ]; |
|
|
| export type DarkFleetVessel = (typeof DARK_FLEET_VESSELS)[0]; |
|
|