commit 6281085045c8d8bf9fd25a059a7225ce93420674
Author: anoracleofra-code
+ Global Threat Intercept — Real-Time Geospatial Intelligence Platform
+ 🛰️ S H A D O W B R O K E R
+ TOP SECRET // SI TK // NOFORN
+
+ Built with ☕ and too many API calls +
diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..e46dc11 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,16 @@ +FROM python:3.10-slim + +WORKDIR /app + +# Install dependencies +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +# Copy source code +COPY . . + +# Expose port +EXPOSE 8000 + +# Start FastAPI server +CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"] diff --git a/backend/ais_proxy.js b/backend/ais_proxy.js new file mode 100644 index 0000000..f03298f --- /dev/null +++ b/backend/ais_proxy.js @@ -0,0 +1,52 @@ +const WebSocket = require('ws'); + +const args = process.argv.slice(2); +const API_KEY = args[0] || '75cc39af03c9cc23c90e8a7b3c3bc2b2a507c5fb'; + +const FILTER = [ + // US Aircraft Carriers and major naval groups + { "MMSI": 338000000 }, { "MMSI": 338100000 }, // US Navy general prefixes + // Plus let's grab some global shipping for density + { "BoundingBoxes": [[[-90, -180], [90, 180]]] } +]; + +function connect() { + const ws = new WebSocket('wss://stream.aisstream.io/v0/stream'); + + ws.on('open', () => { + const subMsg = { + APIKey: API_KEY, + BoundingBoxes: [ + [[-90, -180], [90, 180]] + ], + FilterMessageTypes: [ + "PositionReport", + "ShipStaticData", + "StandardClassBPositionReport" + ] + }; + ws.send(JSON.stringify(subMsg)); + }); + + ws.on('message', (data) => { + // Output raw AIS message JSON to stdout so Python can consume it + // We ensure exactly one JSON object per line. + try { + const parsed = JSON.parse(data); + console.log(JSON.stringify(parsed)); + } catch (e) { + // ignore non-json + } + }); + + ws.on('error', (err) => { + console.error("WebSocket Proxy Error:", err.message); + }); + + ws.on('close', () => { + console.error("WebSocket Proxy Closed. Reconnecting in 5s..."); + setTimeout(connect, 5000); + }); +} + +connect(); diff --git a/backend/analyze_xlsx.py b/backend/analyze_xlsx.py new file mode 100644 index 0000000..da601b8 --- /dev/null +++ b/backend/analyze_xlsx.py @@ -0,0 +1,112 @@ +import zipfile +import xml.etree.ElementTree as ET +import re +import csv +import os + +xlsx_path = r"f:\Codebase\Oracle\live-risk-dashboard\TheAirTraffic Database.xlsx" +output_path = r"f:\Codebase\Oracle\live-risk-dashboard\backend\xlsx_analysis.txt" + +def parse_xlsx_sheet(z, shared_strings, sheet_num): + ns = {'s': 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'} + sheet_file = f'xl/worksheets/sheet{sheet_num}.xml' + if sheet_file not in z.namelist(): + return [] + ws_xml = z.read(sheet_file) + ws_root = ET.fromstring(ws_xml) + rows = [] + for row in ws_root.findall('.//s:sheetData/s:row', ns): + cells = {} + for cell in row.findall('s:c', ns): + cell_ref = cell.get('r', '') + cell_type = cell.get('t', '') + val_elem = cell.find('s:v', ns) + val = val_elem.text if val_elem is not None else '' + if cell_type == 's' and val: + val = shared_strings[int(val)] + col = re.match(r'([A-Z]+)', cell_ref).group(1) if re.match(r'([A-Z]+)', cell_ref) else '' + cells[col] = val + rows.append(cells) + return rows + +with open(output_path, 'w', encoding='utf-8') as out: + with zipfile.ZipFile(xlsx_path, 'r') as z: + shared_strings = [] + if 'xl/sharedStrings.xml' in z.namelist(): + ss_xml = z.read('xl/sharedStrings.xml') + root = ET.fromstring(ss_xml) + ns = {'s': 'http://schemas.openxmlformats.org/spreadsheetml/2006/main'} + for si in root.findall('.//s:si', ns): + texts = si.findall('.//s:t', ns) + val = ''.join(t.text or '' for t in texts) + shared_strings.append(val) + + all_entries = [] + for sheet_idx in range(1, 5): + rows = parse_xlsx_sheet(z, shared_strings, sheet_idx) + if not rows: + continue + + out.write(f"\n=== SHEET {sheet_idx}: {len(rows)} rows ===\n") + # Print first 5 rows + for i in range(min(5, len(rows))): + for col in sorted(rows[i].keys(), key=lambda x: (len(x), x)): + val = rows[i][col] + if val: + out.write(f" Row{i} {col}: '{val[:80]}'\n") + out.write("\n") + + for r in rows[1:]: + for col, val in r.items(): + val = str(val).strip() + n_regs = re.findall(r'N\d{1,5}[A-Z]{0,2}', val) + owner = r.get('B', r.get('A', '')).strip() + aircraft_type = r.get('C', r.get('D', '')).strip() + for reg in n_regs: + all_entries.append({ + 'registration': reg.upper(), + 'owner': owner, + 'type': aircraft_type, + 'sheet': sheet_idx + }) + + unique_regs = set(e['registration'] for e in all_entries) + out.write(f"\nTOTAL ENTRIES: {len(all_entries)}\n") + out.write(f"UNIQUE REGISTRATIONS: {len(unique_regs)}\n") + + csv_path = r"f:\Codebase\Oracle\live-risk-dashboard\PLANEALERTLIST\plane-alert-db-main\plane-alert-db.csv" + existing = {} + with open(csv_path, 'r', encoding='utf-8') as f: + reader = csv.DictReader(f) + for row in reader: + icao = row.get('$ICAO', '').strip().upper() + reg = row.get('$Registration', '').strip().upper() + if reg: + existing[reg] = { + 'icao': icao, + 'category': row.get('Category', ''), + 'operator': row.get('$Operator', ''), + } + + already_in = unique_regs & set(existing.keys()) + missing = unique_regs - set(existing.keys()) + out.write(f"\nplane-alert-db: {len(existing)} registrations\n") + out.write(f"Already covered: {len(already_in)}\n") + out.write(f"MISSING: {len(missing)}\n") + + out.write(f"\n--- ALREADY TRACKED ---\n") + seen = set() + for e in all_entries: + if e['registration'] in already_in and e['registration'] not in seen: + info = existing[e['registration']] + out.write(f" {e['owner'][:40]:40s} {e['registration']:10s} DB_CAT: {info['category'][:25]:25s} DB_OP: {info['operator'][:40]}\n") + seen.add(e['registration']) + + out.write(f"\n--- MISSING (NEED TO ADD) ---\n") + seen = set() + for e in all_entries: + if e['registration'] in missing and e['registration'] not in seen: + out.write(f" {e['owner'][:40]:40s} {e['registration']:10s} TYPE: {e['type'][:30]}\n") + seen.add(e['registration']) + +print(f"Analysis written to {output_path}") diff --git a/backend/check_regions.py b/backend/check_regions.py new file mode 100644 index 0000000..ddf6a89 --- /dev/null +++ b/backend/check_regions.py @@ -0,0 +1,17 @@ +import requests + +regions = [ + {"lat": 39.8, "lon": -98.5, "dist": 2000}, # USA + {"lat": 50.0, "lon": 15.0, "dist": 2000}, # Europe + {"lat": 35.0, "lon": 105.0, "dist": 2000} # Asia / China +] + +for r in regions: + url = f"https://api.adsb.lol/v2/lat/{r['lat']}/lon/{r['lon']}/dist/{r['dist']}" + res = requests.get(url, timeout=10) + if res.status_code == 200: + data = res.json() + acs = data.get("ac", []) + print(f"Region lat:{r['lat']} lon:{r['lon']} dist:{r['dist']} -> Flights: {len(acs)}") + else: + print(f"Error for Region lat:{r['lat']} lon:{r['lon']}: HTTP {res.status_code}") diff --git a/backend/clean_osm_cctvs.py b/backend/clean_osm_cctvs.py new file mode 100644 index 0000000..17bd77c --- /dev/null +++ b/backend/clean_osm_cctvs.py @@ -0,0 +1,10 @@ +import sqlite3 +import os + +db_path = os.path.join(os.path.dirname(__file__), 'cctv.db') +conn = sqlite3.connect(db_path) +cur = conn.cursor() +cur.execute("DELETE FROM cameras WHERE id LIKE 'OSM-%'") +print(f"Deleted {cur.rowcount} OSM cameras from DB.") +conn.commit() +conn.close() diff --git a/backend/data/plane_alert_db.json b/backend/data/plane_alert_db.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/backend/data/plane_alert_db.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/backend/data/tracked_names.json b/backend/data/tracked_names.json new file mode 100644 index 0000000..ec9636e --- /dev/null +++ b/backend/data/tracked_names.json @@ -0,0 +1,8678 @@ +{ + "names": [ + { + "name": "21st Century Fox America", + "category": "Business" + }, + { + "name": "United States of America 747/757", + "category": "Government" + }, + { + "name": "Elon Musk", + "category": "People" + }, + { + "name": "Dallas Mavericks", + "category": "Sports" + }, + { + "name": "Alex Rodriguez", + "category": "Celebrity" + }, + { + "name": "State of Alabama", + "category": "State/Law" + }, + { + "name": "Rolls Royce Test Bed", + "category": "Other" + }, + { + "name": "Bombardier Global 7500", + "category": "Test Aircraft" + }, + { + "name": "CitationMax", + "category": "YouTubers" + }, + { + "name": "Bernie Ecclestone", + "category": "Formula 1" + }, + { + "name": "AbbVie", + "category": "Business" + }, + { + "name": "FBI (Federal Bureau of Investigation)", + "category": "Government" + }, + { + "name": "Bill Gates", + "category": "People" + }, + { + "name": "Arizona Cardinals Football", + "category": "Sports" + }, + { + "name": "Blake Shelton", + "category": "Celebrity" + }, + { + "name": "State of Alaska", + "category": "State/Law" + }, + { + "name": "Zero G Plane", + "category": "Other" + }, + { + "name": "Gulfstream G700", + "category": "Test Aircraft" + }, + { + "name": "Premier1Driver", + "category": "YouTubers" + }, + { + "name": "Chalerm Yoovidhya", + "category": "Formula 1" + }, + { + "name": "Adobe", + "category": "Business" + }, + { + "name": "DOJ (Dept. of Justice)", + "category": "Government" + }, + { + "name": "Melinda Gates", + "category": "People" + }, + { + "name": "Patriots", + "category": "Sports" + }, + { + "name": "Dan Bilzerian", + "category": "Celebrity" + }, + { + "name": "State of Arizona", + "category": "State/Law" + }, + { + "name": "Orbis Flying Eye Hospital", + "category": "Other" + }, + { + "name": "Honeywell 757 Test Bed", + "category": "Test Aircraft" + }, + { + "name": "Baron Pilot", + "category": "YouTubers" + }, + { + "name": "Crown Prince Salman bin Hamad bin Isa Al Khalifa", + "category": "Formula 1" + }, + { + "name": "Aflac", + "category": "Business" + }, + { + "name": "USDHS (Dept. Homeland Sec.)", + "category": "Government" + }, + { + "name": "Larry Ellison", + "category": "People" + }, + { + "name": "Colts", + "category": "Sports" + }, + { + "name": "Dr. Phil & Son", + "category": "Celebrity" + }, + { + "name": "State of Arkansas", + "category": "State/Law" + }, + { + "name": "Samaritan's Purse", + "category": "Other" + }, + { + "name": "Boeing 777-9", + "category": "Test Aircraft" + }, + { + "name": "Stevie Triesenberg", + "category": "YouTubers" + }, + { + "name": "Dietrich Mateschitz", + "category": "Formula 1" + }, + { + "name": "Air Lease Corp.", + "category": "Business" + }, + { + "name": "USCG (Coast Guard)", + "category": "Government" + }, + { + "name": "Mark Cuban", + "category": "People" + }, + { + "name": "Dallas Cowboys", + "category": "Sports" + }, + { + "name": "Taylor Swift", + "category": "Celebrity" + }, + { + "name": "State of California", + "category": "State/Law" + }, + { + "name": "Airbus Beluga", + "category": "Other" + }, + { + "name": "Textron/Beechcraft Denali", + "category": "Test Aircraft" + }, + { + "name": "Matt Guthmiller", + "category": "YouTubers" + }, + { + "name": "Fernando Alonso", + "category": "Formula 1" + }, + { + "name": "Allen & Company", + "category": "Business" + }, + { + "name": "U.S. Marshals (JPATS/Prisoner Transport)", + "category": "Government" + }, + { + "name": "Roman Abramovich", + "category": "People" + }, + { + "name": "JR Motorsports", + "category": "Sports" + }, + { + "name": "Drake", + "category": "Celebrity" + }, + { + "name": "State of Colorado", + "category": "State/Law" + }, + { + "name": "Boeing Dreamlifter", + "category": "Other" + }, + { + "name": "Gulfstream G800", + "category": "Test Aircraft" + }, + { + "name": "steveo1kinevo", + "category": "YouTubers" + }, + { + "name": "Flavio Briatore", + "category": "Formula 1" + }, + { + "name": "American Express", + "category": "Business" + }, + { + "name": "Government of France", + "category": "Government" + }, + { + "name": "Alisher Usmanov", + "category": "People" + }, + { + "name": "Houston Rockets", + "category": "Sports" + }, + { + "name": "State of Connecticut", + "category": "State/Law" + }, + { + "name": "International Air Response", + "category": "Other" + }, + { + "name": "Falcon 6X", + "category": "Test Aircraft" + }, + { + "name": "Angle of Attack", + "category": "YouTubers" + }, + { + "name": "Abbott Labratories", + "category": "Business" + }, + { + "name": "Government of India", + "category": "Government" + }, + { + "name": "Steve Wynn/Wynn Resorts", + "category": "People" + }, + { + "name": "WWE", + "category": "Sports" + }, + { + "name": "Floyd Mayweather", + "category": "Celebrity" + }, + { + "name": "State of Delaware", + "category": "State/Law" + }, + { + "name": "AN124", + "category": "Other" + }, + { + "name": "Eviation Alice", + "category": "Test Aircraft" + }, + { + "name": "Trent Palmer", + "category": "YouTubers" + }, + { + "name": "Gene Haas", + "category": "Formula 1" + }, + { + "name": "American Family Insurance", + "category": "Business" + }, + { + "name": "Government of Qatar", + "category": "Government" + }, + { + "name": "Tom Gores", + "category": "People" + }, + { + "name": "Philadelphia Eagles", + "category": "Sports" + }, + { + "name": "Garth Brooks", + "category": "Celebrity" + }, + { + "name": "State of Florida", + "category": "State/Law" + }, + { + "name": "Swiss Air Ambulance", + "category": "Other" + }, + { + "name": "Cessna C700", + "category": "Test Aircraft" + }, + { + "name": "Dave Sparks / HeavyD", + "category": "YouTubers" + }, + { + "name": "John Malone", + "category": "Formula 1" + }, + { + "name": "Amgen", + "category": "Business" + }, + { + "name": "Government of Abu Dhabi", + "category": "Government" + }, + { + "name": "Paul Tudor Jones", + "category": "People" + }, + { + "name": "Tony Stewart", + "category": "Sports" + }, + { + "name": "George Strait", + "category": "Celebrity" + }, + { + "name": "State of Georgia", + "category": "State/Law" + }, + { + "name": "LifeFlightNetwork", + "category": "Other" + }, + { + "name": "Boeing 737-10 MAX", + "category": "Test Aircraft" + }, + { + "name": "Don Av8's", + "category": "YouTubers" + }, + { + "name": "Lance Stroll", + "category": "Formula 1" + }, + { + "name": "Andreessen Horowitz", + "category": "Business" + }, + { + "name": "Government of Saudi Arabia", + "category": "Government" + }, + { + "name": "Grant Cardone", + "category": "People" + }, + { + "name": "Chase Elliot", + "category": "Sports" + }, + { + "name": "Harrison Ford", + "category": "Celebrity" + }, + { + "name": "DLR - German Aerospace Center", + "category": "Other" + }, + { + "name": "MQ-20 Avenger", + "category": "Test Aircraft" + }, + { + "name": "MojoGrip", + "category": "YouTubers" + }, + { + "name": "Lawrence Stroll", + "category": "Formula 1" + }, + { + "name": "Apollo Global Management", + "category": "Business" + }, + { + "name": "Government of Equatorial Guinea", + "category": "Government" + }, + { + "name": "Jared Isaacman", + "category": "People" + }, + { + "name": "Brad Keselowski", + "category": "Sports" + }, + { + "name": "J Balvin", + "category": "Celebrity" + }, + { + "name": "State of Idaho", + "category": "State/Law" + }, + { + "name": "Lyden Air Cargo", + "category": "Other" + }, + { + "name": "Joby Aviation eVTOL", + "category": "Test Aircraft" + }, + { + "name": "Stefan Drury", + "category": "YouTubers" + }, + { + "name": "Max Verstappen", + "category": "Formula 1" + }, + { + "name": "AT&T", + "category": "Business" + }, + { + "name": "Government of Japan", + "category": "Government" + }, + { + "name": "Marco Andretti", + "category": "Sports" + }, + { + "name": "Jackie Chan", + "category": "Celebrity" + }, + { + "name": "State of Illinois", + "category": "State/Law" + }, + { + "name": "Pratt & Whitney Canada 747SP", + "category": "Other" + }, + { + "name": "Bell V-280 Valor", + "category": "Test Aircraft" + }, + { + "name": "ENTP LIFE", + "category": "YouTubers" + }, + { + "name": "Michael Schumacher", + "category": "Formula 1" + }, + { + "name": "Bank of America", + "category": "Business" + }, + { + "name": "Government State of Kuwait", + "category": "Government" + }, + { + "name": "Jack Ma", + "category": "People" + }, + { + "name": "Dale Earnhardt Family", + "category": "Sports" + }, + { + "name": "Jerry Seinfeld", + "category": "Celebrity" + }, + { + "name": "State of Indiana", + "category": "State/Law" + }, + { + "name": "Dassault Falcon Response Team", + "category": "Other" + }, + { + "name": "Sikorsky SB-1 Defiant", + "category": "Test Aircraft" + }, + { + "name": "Plane and Dirt Simple", + "category": "YouTubers" + }, + { + "name": "Nelson Piquet", + "category": "Formula 1" + }, + { + "name": "Bass Pro Shop", + "category": "Business" + }, + { + "name": "Government of Russia", + "category": "Government" + }, + { + "name": "Ken Griffin", + "category": "People" + }, + { + "name": "Joe Gibbs Racing", + "category": "Sports" + }, + { + "name": "Jim Carrey", + "category": "Celebrity" + }, + { + "name": "State of Iowa", + "category": "State/Law" + }, + { + "name": "Phoenix Air Gulfstream II", + "category": "Other" + }, + { + "name": "Alyssa Miller", + "category": "YouTubers" + }, + { + "name": "Piero Ferrari", + "category": "Formula 1" + }, + { + "name": "Berkshire Hathaway", + "category": "Business" + }, + { + "name": "Government of Turkey", + "category": "Government" + }, + { + "name": "Kimbal Musk", + "category": "People" + }, + { + "name": "Denny Hamlin Racing", + "category": "Sports" + }, + { + "name": "Jimmy Buffet", + "category": "Celebrity" + }, + { + "name": "State of Kansas", + "category": "State/Law" + }, + { + "name": "Calspan Flight Research", + "category": "Other" + }, + { + "name": "Leonardo AW609", + "category": "Test Aircraft" + }, + { + "name": "JR Garage (JR Aviation)", + "category": "YouTubers" + }, + { + "name": "Rubens Barrichello", + "category": "Formula 1" + }, + { + "name": "Berrada Properties", + "category": "Business" + }, + { + "name": "Government of the Netherlands", + "category": "Government" + }, + { + "name": "Stephen Schwarzman", + "category": "People" + }, + { + "name": "Hendrick Motorsports", + "category": "Sports" + }, + { + "name": "John Travolta", + "category": "Celebrity" + }, + { + "name": "State of Kentucky", + "category": "State/Law" + }, + { + "name": "Surveillance Australia", + "category": "Other" + }, + { + "name": "Scaled Composites Proteus", + "category": "Test Aircraft" + }, + { + "name": "Pickle Driver (SF50)", + "category": "YouTubers" + }, + { + "name": "Scuderia AlphaTauri", + "category": "Formula 1" + }, + { + "name": "BIC Lighters and Pens", + "category": "Business" + }, + { + "name": "Government of Bangladesh", + "category": "Government" + }, + { + "name": "Steve Witkoff", + "category": "People" + }, + { + "name": "Stewart-Haas Racing", + "category": "Sports" + }, + { + "name": "Julio Iglesias", + "category": "Celebrity" + }, + { + "name": "State of Louisiana", + "category": "State/Law" + }, + { + "name": "Mayo Clinic", + "category": "Other" + }, + { + "name": "Textron AirLand Scorpion", + "category": "Test Aircraft" + }, + { + "name": "Fly With Own (Non-owner Pilot)", + "category": "YouTubers" + }, + { + "name": "Sergio Perez", + "category": "Formula 1" + }, + { + "name": "BlackRock", + "category": "Business" + }, + { + "name": "Government of South Africa", + "category": "Government" + }, + { + "name": "George Lucas", + "category": "People" + }, + { + "name": "Penske Racing", + "category": "Sports" + }, + { + "name": "Keith Urban", + "category": "Celebrity" + }, + { + "name": "State of Maine", + "category": "State/Law" + }, + { + "name": "NAV Canada Flight Inspection", + "category": "Other" + }, + { + "name": "BETA Tech eVTOL", + "category": "Test Aircraft" + }, + { + "name": "Ricky Gutierrez & JR Garage", + "category": "YouTubers" + }, + { + "name": "Blackstone", + "category": "Business" + }, + { + "name": "Royal Air Force", + "category": "Government" + }, + { + "name": "James Simmons", + "category": "People" + }, + { + "name": "Richard Childress Racing", + "category": "Sports" + }, + { + "name": "Kenny Chesney", + "category": "Celebrity" + }, + { + "name": "State of Maryland", + "category": "State/Law" + }, + { + "name": "Life Lion (Hershey Medical Center)", + "category": "Other" + }, + { + "name": "Boeing 737-7 MAX", + "category": "Test Aircraft" + }, + { + "name": "christophe jouany", + "category": "YouTubers" + }, + { + "name": "BMW Automotive", + "category": "Business" + }, + { + "name": "National Nuclear Security Administration", + "category": "Government" + }, + { + "name": "Magic Johnson", + "category": "People" + }, + { + "name": "Victory Aviation (NASCAR)", + "category": "Sports" + }, + { + "name": "Kid Rock", + "category": "Celebrity" + }, + { + "name": "State of Massachusetts", + "category": "State/Law" + }, + { + "name": "NASA", + "category": "Other" + }, + { + "name": "Boeing 777 EcoDemonstrator", + "category": "Test Aircraft" + }, + { + "name": "Blue Star Airways", + "category": "YouTubers" + }, + { + "name": "BNSF Railway", + "category": "Business" + }, + { + "name": "New Zealand Air Force", + "category": "Government" + }, + { + "name": "Johnny Ive", + "category": "People" + }, + { + "name": "Aaron Rogers", + "category": "Sports" + }, + { + "name": "Kim Kardashian", + "category": "Celebrity" + }, + { + "name": "State of Michigan", + "category": "State/Law" + }, + { + "name": "Boeing 787-8 Test Bed", + "category": "Test Aircraft" + }, + { + "name": "SlowAsianDriver", + "category": "YouTubers" + }, + { + "name": "Calspan Defense Corp", + "category": "Business" + }, + { + "name": "Government of Ukraine", + "category": "Government" + }, + { + "name": "Craig McCaw", + "category": "People" + }, + { + "name": "Troy Aikman", + "category": "Sports" + }, + { + "name": "Kylie Jenner", + "category": "Celebrity" + }, + { + "name": "State of Minnesota", + "category": "State/Law" + }, + { + "name": "National Science Foundation", + "category": "Other" + }, + { + "name": "Stratos 716", + "category": "Test Aircraft" + }, + { + "name": "Grant Baker", + "category": "YouTubers" + }, + { + "name": "CarMax", + "category": "Business" + }, + { + "name": "Israel Air Force", + "category": "Government" + }, + { + "name": "John McCaw", + "category": "People" + }, + { + "name": "Russell Wilson", + "category": "Sports" + }, + { + "name": "Luke Bryan", + "category": "Celebrity" + }, + { + "name": "State of Mississippi", + "category": "State/Law" + }, + { + "name": "Innovation First Research and Development Inc", + "category": "Other" + }, + { + "name": "Boeing 757 (F-22 Testbed)", + "category": "Test Aircraft" + }, + { + "name": "Ginger the Plane", + "category": "YouTubers" + }, + { + "name": "Carrier Corp", + "category": "Business" + }, + { + "name": "Government of Iran", + "category": "Government" + }, + { + "name": "Phil Knight (NIKE)", + "category": "People" + }, + { + "name": "Las Vegas Golden Knights", + "category": "Sports" + }, + { + "name": "Mark Wahlberg", + "category": "Celebrity" + }, + { + "name": "State of Missouri", + "category": "State/Law" + }, + { + "name": "T2 Aviation (Oil Spill Response", + "category": "Other" + }, + { + "name": "Micke Lang", + "category": "YouTubers" + }, + { + "name": "Carvana/DriveTime", + "category": "Business" + }, + { + "name": "Government of Canada", + "category": "Government" + }, + { + "name": "Rick Caruso", + "category": "People" + }, + { + "name": "Sergio Garcia", + "category": "Sports" + }, + { + "name": "Michael Jordan", + "category": "Celebrity" + }, + { + "name": "State of Montana", + "category": "State/Law" + }, + { + "name": "FAAM Airborne Laboratory", + "category": "Other" + }, + { + "name": "Gulfstream G400", + "category": "Test Aircraft" + }, + { + "name": "Meet Kevin", + "category": "YouTubers" + }, + { + "name": "Caterpillar Inc.", + "category": "Business" + }, + { + "name": "Royal Australian Air Force", + "category": "Government" + }, + { + "name": "Eric Schmidt", + "category": "People" + }, + { + "name": "Tennessee Titans", + "category": "Sports" + }, + { + "name": "Oprah Winfrey", + "category": "Celebrity" + }, + { + "name": "State of Nebraska", + "category": "State/Law" + }, + { + "name": "Airbus Racer", + "category": "Test Aircraft" + }, + { + "name": "MATCH1N", + "category": "YouTubers" + }, + { + "name": "CBS Media", + "category": "Business" + }, + { + "name": "Government/Police of Mexico", + "category": "Government" + }, + { + "name": "DeVos Family", + "category": "People" + }, + { + "name": "Drew Brees", + "category": "Sports" + }, + { + "name": "Ozuna", + "category": "Celebrity" + }, + { + "name": "State of Nevada", + "category": "State/Law" + }, + { + "name": "Excalibur Testbed", + "category": "Test Aircraft" + }, + { + "name": "Mike Patey", + "category": "YouTubers" + }, + { + "name": "Chevron", + "category": "Business" + }, + { + "name": "Government of North Korea", + "category": "Government" + }, + { + "name": "Yusaku Mazawa", + "category": "People" + }, + { + "name": "LA Chargers", + "category": "Sports" + }, + { + "name": "Pitbull", + "category": "Celebrity" + }, + { + "name": "State of New Hampshire", + "category": "State/Law" + }, + { + "name": "Hermeus Quarterhorse", + "category": "Test Aircraft" + }, + { + "name": "Wifi-Money", + "category": "YouTubers" + }, + { + "name": "Chick-Fil-A", + "category": "Business" + }, + { + "name": "Government of Malaysia", + "category": "Government" + }, + { + "name": "Richard Branson", + "category": "People" + }, + { + "name": "Riley Herbst", + "category": "Sports" + }, + { + "name": "Playboy", + "category": "Celebrity" + }, + { + "name": "State of New Jersey", + "category": "State/Law" + }, + { + "name": "Blue Max Six", + "category": "YouTubers" + }, + { + "name": "Chipotle", + "category": "Business" + }, + { + "name": "Government of Egypt", + "category": "Government" + }, + { + "name": "Tony Robbins", + "category": "People" + }, + { + "name": "Robert Penske", + "category": "Sports" + }, + { + "name": "Jay-Z", + "category": "Celebrity" + }, + { + "name": "State of New Mexico", + "category": "State/Law" + }, + { + "name": "Gear Down", + "category": "YouTubers" + }, + { + "name": "Choice Hotels", + "category": "Business" + }, + { + "name": "Government of Zambia", + "category": "Government" + }, + { + "name": "Tiger Woods", + "category": "People" + }, + { + "name": "Jim Crane/Houston Astros", + "category": "Sports" + }, + { + "name": "Rick Ross", + "category": "Celebrity" + }, + { + "name": "State of New York", + "category": "State/Law" + }, + { + "name": "Becki and Chris", + "category": "YouTubers" + }, + { + "name": "Cisco Systems", + "category": "Business" + }, + { + "name": "Government of the United Kingdom", + "category": "Government" + }, + { + "name": "Sebastian Kulczyk", + "category": "People" + }, + { + "name": "John Henry/Boston Red Sox", + "category": "Sports" + }, + { + "name": "Rihanna", + "category": "Celebrity" + }, + { + "name": "State of North Carolina", + "category": "State/Law" + }, + { + "name": "Blaze Grubbs", + "category": "YouTubers" + }, + { + "name": "Citigroup", + "category": "Business" + }, + { + "name": "Government of Spain", + "category": "Government" + }, + { + "name": "Kilmer Management LP", + "category": "Sports" + }, + { + "name": "State of North Dakota", + "category": "State/Law" + }, + { + "name": "Accidental Aviator", + "category": "YouTubers" + }, + { + "name": "Clayton Homes", + "category": "Business" + }, + { + "name": "Government of Croatia", + "category": "Government" + }, + { + "name": "Olympia Aviation (Detroit Red Wings/Tigers)", + "category": "Sports" + }, + { + "name": "Sammy Hagar", + "category": "Celebrity" + }, + { + "name": "State of Ohio", + "category": "State/Law" + }, + { + "name": "Coca-Cola", + "category": "Business" + }, + { + "name": "Government of Bulgaria", + "category": "Government" + }, + { + "name": "David Rubenstein", + "category": "People" + }, + { + "name": "John Mara/NY Giants", + "category": "Sports" + }, + { + "name": "Sebastian Maniscalco", + "category": "Celebrity" + }, + { + "name": "State of Oklahoma", + "category": "State/Law" + }, + { + "name": "Congra Brands", + "category": "Business" + }, + { + "name": "Government of Czech Republic", + "category": "Government" + }, + { + "name": "Vasil Bojkov", + "category": "People" + }, + { + "name": "Saints/Pelicans", + "category": "Sports" + }, + { + "name": "Shaq", + "category": "Celebrity" + }, + { + "name": "State of Oregon", + "category": "State/Law" + }, + { + "name": "Conoco", + "category": "Business" + }, + { + "name": "Government of Poland", + "category": "Government" + }, + { + "name": "Mark Zuckerberg", + "category": "People" + }, + { + "name": "Ron Fowler/San Diego Padres", + "category": "Sports" + }, + { + "name": "Steven Spielberg", + "category": "Celebrity" + }, + { + "name": "State of Pennsylvania", + "category": "State/Law" + }, + { + "name": "ConocoPhillips", + "category": "Business" + }, + { + "name": "Government of Slovenia", + "category": "Government" + }, + { + "name": "Mike Bloomberg", + "category": "People" + }, + { + "name": "John Middleton/Phillies", + "category": "Sports" + }, + { + "name": "Toby Kieth", + "category": "Celebrity" + }, + { + "name": "Costar Realty", + "category": "Business" + }, + { + "name": "Government of Cote d'Ivoire", + "category": "Government" + }, + { + "name": "Jim Ovia", + "category": "People" + }, + { + "name": "Cristiano Ronaldo", + "category": "Sports" + }, + { + "name": "Tom Cruise", + "category": "Celebrity" + }, + { + "name": "State of South Carolina", + "category": "State/Law" + }, + { + "name": "Business", + "category": "Business" + }, + { + "name": "Government", + "category": "Government" + }, + { + "name": "People", + "category": "People" + }, + { + "name": "Sports", + "category": "Sports" + }, + { + "name": "Celebrity", + "category": "Celebrity" + }, + { + "name": "State Govt./Law", + "category": "State/Law" + }, + { + "name": "Other", + "category": "Other" + }, + { + "name": "Test Aircraft", + "category": "Test Aircraft" + }, + { + "name": "YouTubers", + "category": "YouTubers" + }, + { + "name": "Formula 1 VIP's", + "category": "Formula 1" + }, + { + "name": "Silver Lake Technology Management", + "category": "Business" + }, + { + "name": "Government of Nigeria", + "category": "Government" + }, + { + "name": "David Geffen", + "category": "People" + }, + { + "name": "Jody Allen/Seahawks & Trail Blazers (Paul Allen Estate)", + "category": "Sports" + }, + { + "name": "Tyler Perry", + "category": "Celebrity" + }, + { + "name": "State of South Dakota", + "category": "State/Law" + }, + { + "name": "Costco Wholesale", + "category": "Business" + }, + { + "name": "Government of Pakistan", + "category": "Government" + }, + { + "name": "Laurene Powell Jobs", + "category": "People" + }, + { + "name": "Rory McIlroy", + "category": "Sports" + }, + { + "name": "Dierks Bentley", + "category": "Celebrity" + }, + { + "name": "State of Tennessee", + "category": "State/Law" + }, + { + "name": "COX TV/Communications", + "category": "Business" + }, + { + "name": "Government of Gabon", + "category": "Government" + }, + { + "name": "Ralph Lauren", + "category": "People" + }, + { + "name": "John Elway", + "category": "Sports" + }, + { + "name": "Paris Hilton", + "category": "Celebrity" + }, + { + "name": "State of Texas", + "category": "State/Law" + }, + { + "name": "Cracker Barrel", + "category": "Business" + }, + { + "name": "Government of Brazil", + "category": "Government" + }, + { + "name": "Adam Weitsman", + "category": "People" + }, + { + "name": "Adam Scott", + "category": "Sports" + }, + { + "name": "DJ Khaled", + "category": "Celebrity" + }, + { + "name": "State of Utah", + "category": "State/Law" + }, + { + "name": "Cummins Inc", + "category": "Business" + }, + { + "name": "Government of Panama", + "category": "Government" + }, + { + "name": "Nancy Walton", + "category": "People" + }, + { + "name": "David Tepper", + "category": "Sports" + }, + { + "name": "CVS", + "category": "Business" + }, + { + "name": "Government of Italy", + "category": "Government" + }, + { + "name": "Tim Gillean", + "category": "People" + }, + { + "name": "Robert Kraft", + "category": "Sports" + }, + { + "name": "State of Virginia", + "category": "State/Law" + }, + { + "name": "Dell", + "category": "Business" + }, + { + "name": "Government of Switzerland", + "category": "Government" + }, + { + "name": "Ha Du Long", + "category": "People" + }, + { + "name": "Jason Kelce", + "category": "Sports" + }, + { + "name": "State of Washington", + "category": "State/Law" + }, + { + "name": "Dick's Sporting Goods", + "category": "Business" + }, + { + "name": "Government of Hungary", + "category": "Government" + }, + { + "name": "Nick Woodman", + "category": "People" + }, + { + "name": "Craig Leipold/Minnesota Wild", + "category": "Sports" + }, + { + "name": "State of West Virginia", + "category": "State/Law" + }, + { + "name": "DigitalBridge", + "category": "Business" + }, + { + "name": "Government of Ireland", + "category": "Government" + }, + { + "name": "Sawiris Family", + "category": "People" + }, + { + "name": "Detroit Red Wings", + "category": "Sports" + }, + { + "name": "State of Wisconsin", + "category": "State/Law" + }, + { + "name": "Dillards Dept. Stores", + "category": "Business" + }, + { + "name": "Government of Chile", + "category": "Government" + }, + { + "name": "Ted Turner", + "category": "People" + }, + { + "name": "Patrick Mahomes (Part Owner)", + "category": "Sports" + }, + { + "name": "State of Wyoming", + "category": "State/Law" + }, + { + "name": "Dippin Dots", + "category": "Business" + }, + { + "name": "Johor Royal Family", + "category": "Government" + }, + { + "name": "Tilman Fertitta", + "category": "People" + }, + { + "name": "Lionel Messi", + "category": "Sports" + }, + { + "name": "Discovery Land Company Real Estate", + "category": "Business" + }, + { + "name": "Government of Ecuador", + "category": "Government" + }, + { + "name": "Shahid Khan", + "category": "People" + }, + { + "name": "Disney", + "category": "Business" + }, + { + "name": "Government of Thailand", + "category": "Government" + }, + { + "name": "Santo Domingo Family", + "category": "People" + }, + { + "name": "DMB Associates Real Estate", + "category": "Business" + }, + { + "name": "Andrew Forrest", + "category": "People" + }, + { + "name": "Dollar General", + "category": "Business" + }, + { + "name": "Kingdom of Eswatini", + "category": "Government" + }, + { + "name": "Steve Ballmer", + "category": "People" + }, + { + "name": "Dollar Tree", + "category": "Business" + }, + { + "name": "Government of Belarus", + "category": "Government" + }, + { + "name": "Arthur Blank", + "category": "People" + }, + { + "name": "Domino's", + "category": "Business" + }, + { + "name": "Government of Germany", + "category": "Government" + }, + { + "name": "John W. Henry", + "category": "People" + }, + { + "name": "Draft Kings", + "category": "Business" + }, + { + "name": "Government of Algeria", + "category": "Government" + }, + { + "name": "Jim Crane", + "category": "People" + }, + { + "name": "DS Advisors (Equitec)", + "category": "Business" + }, + { + "name": "Government of Angola", + "category": "Government" + }, + { + "name": "Jimmy Johnson", + "category": "People" + }, + { + "name": "Duke Energy", + "category": "Business" + }, + { + "name": "Government of Argentina", + "category": "Government" + }, + { + "name": "Stan Kronke", + "category": "People" + }, + { + "name": "Dutch Bros Coffee", + "category": "Business" + }, + { + "name": "Government of Armenia", + "category": "Government" + }, + { + "name": "Sergey Brin", + "category": "People" + }, + { + "name": "Eli Lilly and Company", + "category": "Business" + }, + { + "name": "Government of Azerbaijan", + "category": "Government" + }, + { + "name": "Ted Leonsis", + "category": "People" + }, + { + "name": "Enterprise Car Rental", + "category": "Business" + }, + { + "name": "Bahrain Royal Flight", + "category": "Government" + }, + { + "name": "Phil Ruffin", + "category": "People" + }, + { + "name": "ExxonMobile", + "category": "Business" + }, + { + "name": "Government of Belgium", + "category": "Government" + }, + { + "name": "Paul L. Foster", + "category": "People" + }, + { + "name": "FedEx", + "category": "Business" + }, + { + "name": "Government of Bolivia", + "category": "Government" + }, + { + "name": "Wesley Edens", + "category": "People" + }, + { + "name": "First Horizon Bank", + "category": "Business" + }, + { + "name": "Government of Tanzania", + "category": "Government" + }, + { + "name": "Jeff Bezos", + "category": "People" + }, + { + "name": "Five Guys", + "category": "Business" + }, + { + "name": "Government of Turkmenistan", + "category": "Government" + }, + { + "name": "Fertitta (Casinos + Houston Rockets)", + "category": "People" + }, + { + "name": "Ford", + "category": "Business" + }, + { + "name": "Republic of Tatarstan(RU)", + "category": "Government" + }, + { + "name": "David MacNeil", + "category": "People" + }, + { + "name": "Franklin Templeton Investments", + "category": "Business" + }, + { + "name": "Government of Jordan", + "category": "Government" + }, + { + "name": "Mike Lindell", + "category": "People" + }, + { + "name": "GAP Inc.", + "category": "Business" + }, + { + "name": "John Paulson", + "category": "People" + }, + { + "name": "General Dynamics", + "category": "Business" + }, + { + "name": "Joe Manchin", + "category": "People" + }, + { + "name": "Globus Medical", + "category": "Business" + }, + { + "name": "Dennis Washington", + "category": "People" + }, + { + "name": "Goldman Sachs", + "category": "Business" + }, + { + "name": "Murdoch Family", + "category": "People" + }, + { + "name": "Goodyear Tire & Rubber Company", + "category": "Business" + }, + { + "name": "Dan Newlin", + "category": "People" + }, + { + "name": "Google", + "category": "Business" + }, + { + "name": "Leon Black", + "category": "People" + }, + { + "name": "Grady White Boats", + "category": "Business" + }, + { + "name": "Great Clips", + "category": "Business" + }, + { + "name": "Mark Benioff", + "category": "People" + }, + { + "name": "Guggenheim Partners", + "category": "Business" + }, + { + "name": "Jim Breyer", + "category": "People" + }, + { + "name": "Hallmark Cards", + "category": "Business" + }, + { + "name": "John Staluppi", + "category": "People" + }, + { + "name": "Hard Rock", + "category": "Business" + }, + { + "name": "Jeffrey Soffer", + "category": "People" + }, + { + "name": "Hershey Foods", + "category": "Business" + }, + { + "name": "Gulfstream C-37A", + "category": "Government" + }, + { + "name": "Peter Thiel", + "category": "People" + }, + { + "name": "Hess Corp", + "category": "Business" + }, + { + "name": "Gulfstream C-37B", + "category": "Government" + }, + { + "name": "George William Davies", + "category": "People" + }, + { + "name": "Hilton Hotels", + "category": "Business" + }, + { + "name": "Gulfstream C-20C", + "category": "Government" + }, + { + "name": "Winklevoss Twins (Crypto)", + "category": "People" + }, + { + "name": "Hobby Lobby", + "category": "Business" + }, + { + "name": "Gulfstream C-20H", + "category": "Government" + }, + { + "name": "Jacob Arabo", + "category": "People" + }, + { + "name": "Honeywell", + "category": "Business" + }, + { + "name": "Cessna UC-35A/B", + "category": "Government" + }, + { + "name": "Donald Trump", + "category": "People" + }, + { + "name": "HP", + "category": "Business" + }, + { + "name": "Beoing E4B", + "category": "Government" + }, + { + "name": "Chairul Tanjung", + "category": "People" + }, + { + "name": "Huntsman Jet", + "category": "Business" + }, + { + "name": "Bombardier E-11A", + "category": "Government" + }, + { + "name": "Trevor Milton", + "category": "People" + }, + { + "name": "Hy-Vee Grocery", + "category": "Business" + }, + { + "name": "E-11A BACN & R1 Sentinel", + "category": "Government" + }, + { + "name": "Ted Waitt", + "category": "People" + }, + { + "name": "Hyundai", + "category": "Business" + }, + { + "name": "IAI C-38A Courier", + "category": "Government" + }, + { + "name": "Stanley Druckenmiller", + "category": "People" + }, + { + "name": "IBM", + "category": "Business" + }, + { + "name": "Army ARES Bombardier Global", + "category": "Government" + }, + { + "name": "Thomas Siebel", + "category": "People" + }, + { + "name": "Intel Air Shuttle (Intel)", + "category": "Business" + }, + { + "name": "C-9B Skytrain II", + "category": "Government" + }, + { + "name": "Josh Altman", + "category": "People" + }, + { + "name": "Jacksons Food Stores", + "category": "Business" + }, + { + "name": "RC-12X Guardrail", + "category": "Government" + }, + { + "name": "Peter Lim", + "category": "People" + }, + { + "name": "JCB Manufacturing", + "category": "Business" + }, + { + "name": "COMCO", + "category": "Government" + }, + { + "name": "Robert F. Smith", + "category": "People" + }, + { + "name": "JDS Development", + "category": "Business" + }, + { + "name": "FEST (Foreign Emergency Support Team)", + "category": "Government" + }, + { + "name": "David Grain", + "category": "People" + }, + { + "name": "John Deere", + "category": "Business" + }, + { + "name": "RQ-4 Global Hawk", + "category": "Government" + }, + { + "name": "David Sacks", + "category": "People" + }, + { + "name": "Johnson & Johnson", + "category": "Business" + }, + { + "name": "WC-135R Constant Phoenix", + "category": "Government" + }, + { + "name": "Tommy Hilfiger", + "category": "People" + }, + { + "name": "Johnson Development", + "category": "Business" + }, + { + "name": "U.S. Marines C-40A", + "category": "Government" + }, + { + "name": "Edward Norton", + "category": "People" + }, + { + "name": "Johnsonville Brats", + "category": "Business" + }, + { + "name": "CIA Linked", + "category": "Government" + }, + { + "name": "Ed DeBartolo", + "category": "People" + }, + { + "name": "JP Morgan", + "category": "Business" + }, + { + "name": "U.S. Govt. Special Missions", + "category": "Government" + }, + { + "name": "Jerry Jones", + "category": "People" + }, + { + "name": "JRK Property Holdings", + "category": "Business" + }, + { + "name": "B-29 Superfortress", + "category": "Government" + }, + { + "name": "Fred Luddy", + "category": "People" + }, + { + "name": "L-3 Communications", + "category": "Government" + }, + { + "name": "Dan Snyder", + "category": "People" + }, + { + "name": "Khosla Ventures", + "category": "Business" + }, + { + "name": "L3 Harris Technologies", + "category": "Government" + }, + { + "name": "Alejandro Roemmers", + "category": "People" + }, + { + "name": "Kiewit Engineering Co.", + "category": "Business" + }, + { + "name": "Tenax Aerospace", + "category": "Government" + }, + { + "name": "Paul Randy", + "category": "People" + }, + { + "name": "Knight-Swift Trucking", + "category": "Business" + }, + { + "name": "ARTEMIS Platform", + "category": "Government" + }, + { + "name": "Charles Hoskinson", + "category": "People" + }, + { + "name": "Koch Industries", + "category": "Business" + }, + { + "name": "USAF/Big Safari/SierraNevCor", + "category": "Government" + }, + { + "name": "Jimmy John Liautaud", + "category": "People" + }, + { + "name": "Kohler Co.", + "category": "Business" + }, + { + "name": "Ukraine War Survalliance Plane", + "category": "Government" + }, + { + "name": "Chase Coleman", + "category": "People" + }, + { + "name": "Kroger", + "category": "Business" + }, + { + "name": "Lockheed Gulfstream", + "category": "Government" + }, + { + "name": "Andy Albright", + "category": "People" + }, + { + "name": "Las Vegas Sands", + "category": "Business" + }, + { + "name": "Top Aces F16's", + "category": "Government" + }, + { + "name": "Dmitry Balyasny", + "category": "People" + }, + { + "name": "Leisure Pools", + "category": "Business" + }, + { + "name": "AVdef", + "category": "Government" + }, + { + "name": "John Ruiz", + "category": "People" + }, + { + "name": "LG Electronics", + "category": "Business" + }, + { + "name": "Northrup Grumman", + "category": "Government" + }, + { + "name": "Mark Juncosa (SpaceX VP)", + "category": "People" + }, + { + "name": "Liberty Mutual Insurance", + "category": "Business" + }, + { + "name": "Air Force Materiel Command-GRUMMAN", + "category": "Government" + }, + { + "name": "Jan Koum", + "category": "People" + }, + { + "name": "Lockheed Martin", + "category": "Business" + }, + { + "name": "Military HALO Gulfstreams", + "category": "Government" + }, + { + "name": "Taylor Gerring", + "category": "People" + }, + { + "name": "Lowes", + "category": "Business" + }, + { + "name": "Government 707", + "category": "Government" + }, + { + "name": "Chris Sacca", + "category": "People" + }, + { + "name": "Maersk Shipping Company", + "category": "Business" + }, + { + "name": "MIT Lincoln Lab", + "category": "Government" + }, + { + "name": "John Doerr", + "category": "People" + }, + { + "name": "Mandalay Vegas Resorts", + "category": "Business" + }, + { + "name": "Marriott Hotels", + "category": "Business" + }, + { + "name": "Larry Page", + "category": "People" + }, + { + "name": "Mary Kay Inc.", + "category": "Business" + }, + { + "name": "Jerry Yang", + "category": "People" + }, + { + "name": "McDonalds", + "category": "Business" + }, + { + "name": "Robert Pera", + "category": "People" + }, + { + "name": "McNeil Consumer Healthcare (Tylenol)", + "category": "Business" + }, + { + "name": "Roleof Botha", + "category": "People" + }, + { + "name": "Plumb Bill Pay", + "category": "Business" + }, + { + "name": "Phillip Sarofim", + "category": "People" + }, + { + "name": "Meijer Stores", + "category": "Business" + }, + { + "name": "Joe Tsai", + "category": "People" + }, + { + "name": "Menards", + "category": "Business" + }, + { + "name": "Learjet C-21A", + "category": "Government" + }, + { + "name": "Amnon Shashua", + "category": "People" + }, + { + "name": "Merck", + "category": "Business" + }, + { + "name": "Eytan Stibbe", + "category": "People" + }, + { + "name": "Micron", + "category": "Business" + }, + { + "name": "Woody Johnson", + "category": "People" + }, + { + "name": "Miliken", + "category": "Business" + }, + { + "name": "Boeing C-40A/B Clipper", + "category": "Government" + }, + { + "name": "Mark Burnett", + "category": "People" + }, + { + "name": "Morgan and Morgan Law Firm", + "category": "Business" + }, + { + "name": "Andr\u00e9 Esteves", + "category": "People" + }, + { + "name": "Morgan Stanley", + "category": "Business" + }, + { + "name": "Nick Marietta", + "category": "People" + }, + { + "name": "Nanoworks", + "category": "Business" + }, + { + "name": "Boeing E-3G Sentry", + "category": "Government" + }, + { + "name": "Nestle USA", + "category": "Business" + }, + { + "name": "Jared Kushner", + "category": "People" + }, + { + "name": "Netflix", + "category": "Business" + }, + { + "name": "Charles Simonyi", + "category": "People" + }, + { + "name": "Niagara Water Bottling", + "category": "Business" + }, + { + "name": "FAA", + "category": "Government" + }, + { + "name": "Jon A Shirley", + "category": "People" + }, + { + "name": "Nike", + "category": "Business" + }, + { + "name": "Kevin Harvey", + "category": "People" + }, + { + "name": "Norfolk Southern Railroad", + "category": "Business" + }, + { + "name": "Jeffrey Vinik", + "category": "People" + }, + { + "name": "Oaktree Capital", + "category": "Business" + }, + { + "name": "B-52", + "category": "Government" + }, + { + "name": "Greg Wyler (OneWeb)", + "category": "People" + }, + { + "name": "Oracle", + "category": "Business" + }, + { + "name": "B-1B", + "category": "Government" + }, + { + "name": "Meet Kevin (YouTuber)", + "category": "People" + }, + { + "name": "OtterBox", + "category": "Business" + }, + { + "name": "Gwyenn Shotwell (SpaceX)", + "category": "People" + }, + { + "name": "PACCAR", + "category": "Business" + }, + { + "name": "Antonio Gracias (Valor Equity Partners)", + "category": "People" + }, + { + "name": "Palantir", + "category": "Business" + }, + { + "name": "David Katzman (SmileDirect)", + "category": "People" + }, + { + "name": "Panda Express", + "category": "Business" + }, + { + "name": "Wes Edens", + "category": "People" + }, + { + "name": "Pap\u00e9 Machinery", + "category": "Business" + }, + { + "name": "Remon Voss", + "category": "People" + }, + { + "name": "Paramount Pictures", + "category": "Business" + }, + { + "name": "Joseph Edelman", + "category": "People" + }, + { + "name": "Pasaca Capital", + "category": "Business" + }, + { + "name": "Glennon Crowell Jr.", + "category": "People" + }, + { + "name": "Patek Philippe SA", + "category": "Business" + }, + { + "name": "Pritzker Family", + "category": "People" + }, + { + "name": "PayPal", + "category": "Business" + }, + { + "name": "Aliko Dangote", + "category": "People" + }, + { + "name": "Penn National Gaming", + "category": "Business" + }, + { + "name": "John Schnatter (Papa Johns)", + "category": "People" + }, + { + "name": "Pepsi", + "category": "Business" + }, + { + "name": "Stephanie Shojaee (Shoma Real Estate)", + "category": "People" + }, + { + "name": "Perenco", + "category": "Business" + }, + { + "name": "Nelson Peltz", + "category": "People" + }, + { + "name": "Peterson Companies", + "category": "Business" + }, + { + "name": "Jerry Savelle (televangelist )", + "category": "People" + }, + { + "name": "Pfizer", + "category": "Business" + }, + { + "name": "Michael Niederst (Real estate)", + "category": "People" + }, + { + "name": "Prada", + "category": "Business" + }, + { + "name": "Eric Lefkofsky (Groupon)", + "category": "People" + }, + { + "name": "Precision Castparts", + "category": "Business" + }, + { + "name": "Brad Keywell (Groupon and Uptake Tech)", + "category": "People" + }, + { + "name": "Prime Inc.", + "category": "Business" + }, + { + "name": "James Williamson", + "category": "People" + }, + { + "name": "Principal Financial", + "category": "Business" + }, + { + "name": "Michael Saylor (MicroStrategy)", + "category": "People" + }, + { + "name": "Proctor & Gamble", + "category": "Business" + }, + { + "name": "Michael Milken", + "category": "People" + }, + { + "name": "Prudential Insurance", + "category": "Business" + }, + { + "name": "Patrick Dovigi", + "category": "People" + }, + { + "name": "Publix Supermarkets", + "category": "Business" + }, + { + "name": "John A. Sobrato", + "category": "People" + }, + { + "name": "Puma", + "category": "Business" + }, + { + "name": "Ty Warner", + "category": "People" + }, + { + "name": "Purina Petcare", + "category": "Business" + }, + { + "name": "Louis Bacon", + "category": "People" + }, + { + "name": "Qualcomm", + "category": "Business" + }, + { + "name": "Laurence Escalante (theleecollection)", + "category": "People" + }, + { + "name": "Quest Diagnostics (BE58)", + "category": "Business" + }, + { + "name": "Mohamed El Enein", + "category": "People" + }, + { + "name": "Quest Diagnostics (Other)", + "category": "Business" + }, + { + "name": "Kris Krohn", + "category": "People" + }, + { + "name": "Quest Diagnostics (PC12)", + "category": "Business" + }, + { + "name": "Danny Jenkins", + "category": "People" + }, + { + "name": "Raytheon", + "category": "Business" + }, + { + "name": "Erik Prince", + "category": "People" + }, + { + "name": "RealPage Real Estate", + "category": "Business" + }, + { + "name": "Alan Waxman Sixth Street Partners", + "category": "People" + }, + { + "name": "Related Companies (Stephen Ross)", + "category": "Business" + }, + { + "name": "Pierre Omidyar", + "category": "People" + }, + { + "name": "Resturant Brands Intl.", + "category": "Business" + }, + { + "name": "Richard T. Santulli", + "category": "People" + }, + { + "name": "Rocket Lab Helicopters", + "category": "Business" + }, + { + "name": "Vick Tipnes", + "category": "People" + }, + { + "name": "Tom and Steuart Walton", + "category": "People" + }, + { + "name": "Rooms to Go", + "category": "Business" + }, + { + "name": "Cohen Brothers", + "category": "People" + }, + { + "name": "RTW Investments", + "category": "Business" + }, + { + "name": "Ronald Perelman", + "category": "People" + }, + { + "name": "RyanAir Support Aircraft", + "category": "Business" + }, + { + "name": "Tom Werner", + "category": "People" + }, + { + "name": "S C Johnson", + "category": "Business" + }, + { + "name": "Jon Gray", + "category": "People" + }, + { + "name": "Samsung", + "category": "Business" + }, + { + "name": "Robert Herjavec", + "category": "People" + }, + { + "name": "ScottsMiracle-Gro", + "category": "Business" + }, + { + "name": "Jeff Swickard", + "category": "People" + }, + { + "name": "Shell Oil", + "category": "Business" + }, + { + "name": "Haim Saban", + "category": "People" + }, + { + "name": "Sierra Pacific Industries", + "category": "Business" + }, + { + "name": "Steven Rattner", + "category": "People" + }, + { + "name": "Simon Property Group (Malls)", + "category": "Business" + }, + { + "name": "David Ellison", + "category": "People" + }, + { + "name": "Snapchat/Evan Spiegel", + "category": "Business" + }, + { + "name": "Alberto Rodr\u00edguez Baldi (Baldi Hot Springs Hotel)", + "category": "People" + }, + { + "name": "South Park Media", + "category": "Business" + }, + { + "name": "James Dyson", + "category": "People" + }, + { + "name": "SpaceX", + "category": "Business" + }, + { + "name": "Aiyawatt Srivaddhanaprabha", + "category": "People" + }, + { + "name": "Standard Industries", + "category": "Business" + }, + { + "name": "Jay Penske", + "category": "People" + } + ], + "details": { + "21st Century Fox America": { + "category": "Business", + "registrations": [ + "N2702" + ] + }, + "United States of America 747/757": { + "category": "Government", + "registrations": [ + "02-4452", + "09-2017", + "92-9000", + "98-0002", + "09-2016", + "00-9001", + "99-0003", + "99-0004", + "82-8000", + "09-2018", + "09-2015", + "98-0001" + ] + }, + "Elon Musk": { + "category": "People", + "registrations": [ + "N628TS" + ] + }, + "Dallas Mavericks": { + "category": "Sports", + "registrations": [ + "N801DM" + ] + }, + "Alex Rodriguez": { + "category": "Celebrity", + "registrations": [ + "N313AR" + ] + }, + "State of Alabama": { + "category": "State/Law", + "registrations": [ + "N1263S", + "N225LH", + "N160SA", + "N906V", + "N157SA", + "N1073S", + "N52437", + "N5329S", + "N407SA", + "N477GF" + ] + }, + "Rolls Royce Test Bed": { + "category": "Other", + "registrations": [ + "N787RR" + ] + }, + "Bombardier Global 7500": { + "category": "Test Aircraft", + "registrations": [ + "C-GLBO", + "C-GBLB", + "C-GLBG", + "C-GLBX" + ] + }, + "CitationMax": { + "category": "YouTubers", + "registrations": [ + "N2RF", + "N2MJ" + ] + }, + "Bernie Ecclestone": { + "category": "Formula 1", + "registrations": [ + "HB-FXF", + "M-REEE" + ] + }, + "AbbVie": { + "category": "Business", + "registrations": [ + "N550AV", + "N554AV", + "N551AV", + "N556AV" + ] + }, + "FBI (Federal Bureau of Investigation)": { + "category": "Government", + "registrations": [ + "N616RK" + ] + }, + "Bill Gates": { + "category": "People", + "registrations": [ + "N897GV", + "N887GV", + "N608GV" + ] + }, + "Arizona Cardinals Football": { + "category": "Sports", + "registrations": [ + "N867DA", + "N1AZ" + ] + }, + "Blake Shelton": { + "category": "Celebrity", + "registrations": [ + "N703BG" + ] + }, + "State of Alaska": { + "category": "State/Law", + "registrations": [ + "N7326S", + "N20786", + "N54741", + "N1867", + "N7761D", + "N88AK", + "N7051", + "N7056", + "N70714", + "N574ST", + "N1323Y", + "N8370Q", + "N82736", + "N90322", + "N90918", + "N7196H", + "N270WC", + "N303GV", + "N7695S", + "N70715", + "N106WT", + "N7055", + "N7041", + "N7054", + "N7063J", + "N909AK", + "N7183C", + "N6705H", + "N911NT", + "N7040", + "N3330D", + "N7052", + "N70713", + "N8717Q", + "N34FG", + "N911AA", + "N7085", + "N7058", + "N145PL", + "N607TC", + "N4387Z", + "N4730E", + "N8460C", + "N1155W", + "N125FG", + "N42033", + "N4151T", + "N7067", + "N840AK", + "N905AK", + "N2400S", + "N714NK", + "N246CC", + "N1386A", + "N6987B", + "N82735", + "N82732", + "N7023", + "N7059", + "N7046" + ] + }, + "Zero G Plane": { + "category": "Other", + "registrations": [ + "N794AJ" + ] + }, + "Gulfstream G700": { + "category": "Test Aircraft", + "registrations": [ + "N700GA", + "N703GA", + "N705GD", + "N706GD", + "N702GD", + "N703GD", + "N704GA" + ] + }, + "Premier1Driver": { + "category": "YouTubers", + "registrations": [ + "N390GM" + ] + }, + "Chalerm Yoovidhya": { + "category": "Formula 1", + "registrations": [ + "N155AN", + "HS-CDY", + "OE-LCY" + ] + }, + "Adobe": { + "category": "Business", + "registrations": [ + "N82123" + ] + }, + "DOJ (Dept. of Justice)": { + "category": "Government", + "registrations": [ + "N119NA", + "N874TW", + "N977GA", + "N708JH", + "N313CG", + "N721AL", + "N996GA" + ] + }, + "Melinda Gates": { + "category": "People", + "registrations": [ + "N459WM", + "N459BL" + ] + }, + "Patriots": { + "category": "Sports", + "registrations": [ + "N36NE", + "N225NE" + ] + }, + "Dan Bilzerian": { + "category": "Celebrity", + "registrations": [ + "N701DB" + ] + }, + "State of Arizona": { + "category": "State/Law", + "registrations": [ + "N58AZ", + "N3037Q", + "N761EZ", + "N61298", + "N1816R", + "N783AZ", + "N207KQ", + "N922AZ", + "N911AZ", + "N56AZ", + "N921AZ" + ] + }, + "Orbis Flying Eye Hospital": { + "category": "Other", + "registrations": [ + "N330AU" + ] + }, + "Honeywell 757 Test Bed": { + "category": "Test Aircraft", + "registrations": [ + "N757HW", + "N170EH" + ] + }, + "Baron Pilot": { + "category": "YouTubers", + "registrations": [ + "N3175W" + ] + }, + "Crown Prince Salman bin Hamad bin Isa Al Khalifa": { + "category": "Formula 1", + "registrations": [ + "A9C-HAK" + ] + }, + "Aflac": { + "category": "Business", + "registrations": [ + "N280AF", + "N285AF" + ] + }, + "USDHS (Dept. Homeland Sec.)": { + "category": "Government", + "registrations": [ + "N115H" + ] + }, + "Larry Ellison": { + "category": "People", + "registrations": [ + "N817GS", + "N417C" + ] + }, + "Colts": { + "category": "Sports", + "registrations": [ + "N107TD", + "N931FL", + "N101TD", + "N106TD" + ] + }, + "Dr. Phil & Son": { + "category": "Celebrity", + "registrations": [ + "N800JM", + "N4DP" + ] + }, + "State of Arkansas": { + "category": "State/Law", + "registrations": [ + "N390SP", + "N524SP", + "N77HD", + "N8125N", + "N523SP" + ] + }, + "Samaritan's Purse": { + "category": "Other", + "registrations": [ + "N782SP", + "N783SP" + ] + }, + "Boeing 777-9": { + "category": "Test Aircraft", + "registrations": [ + "N779XZ", + "N779XW", + "N779XY", + "N779XX" + ] + }, + "Stevie Triesenberg": { + "category": "YouTubers", + "registrations": [ + "N9477A", + "N5921C" + ] + }, + "Dietrich Mateschitz": { + "category": "Formula 1", + "registrations": [ + "OE-GDM", + "OE-IDM" + ] + }, + "Air Lease Corp.": { + "category": "Business", + "registrations": [ + "N8AL", + "N1AL" + ] + }, + "USCG (Coast Guard)": { + "category": "Government", + "registrations": [ + "2022-01-02 00:00:00" + ] + }, + "Mark Cuban": { + "category": "People", + "registrations": [ + "N921MT", + "N718MC" + ] + }, + "Dallas Cowboys": { + "category": "Sports", + "registrations": [ + "N1DC" + ] + }, + "Taylor Swift": { + "category": "Celebrity", + "registrations": [ + "N621MM" + ] + }, + "State of California": { + "category": "State/Law", + "registrations": [ + "N984HP", + "N25FG", + "N617HP", + "N22FG", + "N979HP", + "N981HP", + "N983HP", + "N156HP", + "N24FG", + "N463DF", + "N443HP", + "N137HP", + "N28FG", + "N988HP", + "N161SP", + "N459DF", + "N23FG", + "N30CA", + "N974HP", + "N975HP", + "N140HP", + "N441HP", + "N139HP", + "N36FG", + "N976HP", + "N982HP", + "N21FG", + "N985HP", + "N461DF", + "N485DF", + "N37FG", + "N202HP", + "N978HP", + "N511HP", + "N20CA", + "N26FG", + "N153HP" + ] + }, + "Airbus Beluga": { + "category": "Other", + "registrations": [ + "F-GSTD", + "F-GSTC", + "F-GSTF", + "F-GXLI", + "F-GXLH", + "F-WBXL" + ] + }, + "Textron/Beechcraft Denali": { + "category": "Test Aircraft", + "registrations": [ + "N221NT", + "N220BT", + "N222NT" + ] + }, + "Matt Guthmiller": { + "category": "YouTubers", + "registrations": [ + "N367HP" + ] + }, + "Fernando Alonso": { + "category": "Formula 1", + "registrations": [ + "EC-JNZ" + ] + }, + "Allen & Company": { + "category": "Business", + "registrations": [ + "N550AA", + "N550GW" + ] + }, + "U.S. Marshals (JPATS/Prisoner Transport)": { + "category": "Government", + "registrations": [ + "N738A", + "N639CS", + "N640CS", + "N311MS", + "N279AD", + "N1789M" + ] + }, + "Roman Abramovich": { + "category": "People", + "registrations": [ + "LX-GVI", + "LX-RAY", + "M-SOLA", + "P4-MES", + "LX-LUX", + "P4-BDL" + ] + }, + "JR Motorsports": { + "category": "Sports", + "registrations": [ + "N477GJ", + "N38AD", + "N388JR", + "N560MT" + ] + }, + "Drake": { + "category": "Celebrity", + "registrations": [ + "N767CJ", + "N757CJ" + ] + }, + "State of Colorado": { + "category": "State/Law", + "registrations": [ + "N203SP", + "N205SP", + "N328SF", + "N4211C", + "N959AF", + "N185CC", + "N202SP", + "N93827", + "N327SF" + ] + }, + "Boeing Dreamlifter": { + "category": "Other", + "registrations": [ + "N249BA", + "N718BA", + "N747BC", + "N780BA" + ] + }, + "Gulfstream G800": { + "category": "Test Aircraft", + "registrations": [ + "N800G", + "N802GD" + ] + }, + "steveo1kinevo": { + "category": "YouTubers", + "registrations": [ + "N949BZ" + ] + }, + "Flavio Briatore": { + "category": "Formula 1", + "registrations": [ + "G-FBFI" + ] + }, + "American Express": { + "category": "Business", + "registrations": [ + "N652GB", + "N650GB" + ] + }, + "Government of France": { + "category": "Government", + "registrations": [ + "F-RAFA", + "F-RAFB", + "F-RARF" + ] + }, + "Alisher Usmanov": { + "category": "People", + "registrations": [ + "M-DLBR", + "LX-GLX", + "M-IABU" + ] + }, + "Houston Rockets": { + "category": "Sports", + "registrations": [ + "N625HR" + ] + }, + "State of Connecticut": { + "category": "State/Law", + "registrations": [ + "N108SP", + "N1903A", + "N107SP", + "N105SP" + ] + }, + "International Air Response": { + "category": "Other", + "registrations": [ + "N121TG", + "N118TG", + "N120TG", + "N117TG" + ] + }, + "Falcon 6X": { + "category": "Test Aircraft", + "registrations": [ + "F-WZOA", + "F-WAVE", + "F-HSUP", + "F-WSIX" + ] + }, + "Angle of Attack": { + "category": "YouTubers", + "registrations": [ + "N2423U" + ] + }, + "Abbott Labratories": { + "category": "Business", + "registrations": [ + "N900AL", + "N100AL", + "N550AL", + "N650AL" + ] + }, + "Government of India": { + "category": "Government", + "registrations": [ + "K7067", + "K7066" + ] + }, + "Steve Wynn/Wynn Resorts": { + "category": "People", + "registrations": [ + "N1W" + ] + }, + "WWE": { + "category": "Sports", + "registrations": [ + "N247WE" + ] + }, + "Floyd Mayweather": { + "category": "Celebrity", + "registrations": [ + "N305DG" + ] + }, + "State of Delaware": { + "category": "State/Law", + "registrations": [ + "N51SP", + "N1SP", + "N2SP", + "N6SP" + ] + }, + "AN124": { + "category": "Other", + "registrations": [ + "UR-82027", + "RA-82039", + "UR-82073", + "RA-82043", + "UR-82029", + "RA-82035", + "RA-82077", + "RA-82038", + "RA-82030", + "RA-82014", + "UR-82009", + "UR-ZYD", + "RA-82032", + "RA-82040", + "UR-82008", + "RA-82010", + "UR-82072", + "RA-82028", + "RA-82044", + "RA-82041", + "RA-82037", + "RA-82013", + "UR-82007", + "RA-82046", + "RA-82047" + ] + }, + "Eviation Alice": { + "category": "Test Aircraft", + "registrations": [ + "N882EV" + ] + }, + "Trent Palmer": { + "category": "YouTubers", + "registrations": [ + "N318JJ" + ] + }, + "Gene Haas": { + "category": "Formula 1", + "registrations": [ + "N545GH" + ] + }, + "American Family Insurance": { + "category": "Business", + "registrations": [ + "N81GK" + ] + }, + "Government of Qatar": { + "category": "Government", + "registrations": [ + "A7-AAH", + "A7-HSJ", + "A7-HHH", + "A7-HJJ", + "A7-MBK", + "A7-HHK", + "A7-HHM", + "A7-HHF", + "A7-MED", + "A7-HHJ", + "A7-HBJ", + "A7-HHE", + "A7-AAG", + "A7-MHH" + ] + }, + "Tom Gores": { + "category": "People", + "registrations": [ + "N595TG" + ] + }, + "Philadelphia Eagles": { + "category": "Sports", + "registrations": [ + "N468KL", + "N612MJ" + ] + }, + "Garth Brooks": { + "category": "Celebrity", + "registrations": [ + "N810GT" + ] + }, + "State of Florida": { + "category": "State/Law", + "registrations": [ + "N600FC", + "N106FW", + "N419FW", + "N91HP", + "N107FC", + "N155FC", + "N267HP", + "N943FL", + "N773HP", + "N610HP", + "N706HP" + ] + }, + "Swiss Air Ambulance": { + "category": "Other", + "registrations": [ + "HB-JWC", + "HB-JWA", + "HB-JWB" + ] + }, + "Cessna C700": { + "category": "Test Aircraft", + "registrations": [ + "N701GL", + "N9722L", + "N703DL" + ] + }, + "Dave Sparks / HeavyD": { + "category": "YouTubers", + "registrations": [ + "N131AE", + "N801WT" + ] + }, + "John Malone": { + "category": "Formula 1", + "registrations": [ + "N780LM", + "N770LM" + ] + }, + "Amgen": { + "category": "Business", + "registrations": [ + "N558GA" + ] + }, + "Government of Abu Dhabi": { + "category": "Government", + "registrations": [ + "A6-PFE", + "A6-SIL", + "A6-AUH", + "A6-PFC", + "A6-ALN", + "A6-PFG" + ] + }, + "Paul Tudor Jones": { + "category": "People", + "registrations": [ + "N117TF" + ] + }, + "Tony Stewart": { + "category": "Sports", + "registrations": [ + "N329SH" + ] + }, + "George Strait": { + "category": "Celebrity", + "registrations": [ + "N518GS" + ] + }, + "State of Georgia": { + "category": "State/Law", + "registrations": [ + "N25NR", + "N280HG", + "N922SP", + "N924SP", + "N927SP", + "N926SP", + "N429LC", + "N26NR", + "N290MG", + "N930SP", + "N297MH", + "N921SP", + "N940SP", + "N258MG", + "N24NR", + "N252MG", + "N271MG", + "N925SP", + "N908SP", + "N256MG", + "N251MG", + "N266MG" + ] + }, + "LifeFlightNetwork": { + "category": "Other", + "registrations": [ + "N661LF", + "N662LF", + "N617BG", + "N890WA", + "N886LF", + "N214NX", + "N126TS" + ] + }, + "Boeing 737-10 MAX": { + "category": "Test Aircraft", + "registrations": [ + "N27752", + "N27751" + ] + }, + "Don Av8's": { + "category": "YouTubers", + "registrations": [ + "N379JM" + ] + }, + "Lance Stroll": { + "category": "Formula 1", + "registrations": [ + "OE-ILS" + ] + }, + "Andreessen Horowitz": { + "category": "Business", + "registrations": [ + "N689BG" + ] + }, + "Government of Saudi Arabia": { + "category": "Government", + "registrations": [ + "HZ-SKY3", + "HZ-HM65", + "HZ-MF7", + "HZ-MF6", + "HZ-MS4B", + "HZ-MF4", + "HZ-MF8", + "HZ-MF1" + ] + }, + "Grant Cardone": { + "category": "People", + "registrations": [ + "N247GC", + "N880GC" + ] + }, + "Chase Elliot": { + "category": "Sports", + "registrations": [ + "N9CE" + ] + }, + "Harrison Ford": { + "category": "Celebrity", + "registrations": [ + "N6GU" + ] + }, + "DLR - German Aerospace Center": { + "category": "Other", + "registrations": [ + "D-BDLR", + "D-CMET", + "D-ADLR" + ] + }, + "MQ-20 Avenger": { + "category": "Test Aircraft", + "registrations": [ + "N903PC" + ] + }, + "MojoGrip": { + "category": "YouTubers", + "registrations": [ + "N661MG" + ] + }, + "Lawrence Stroll": { + "category": "Formula 1", + "registrations": [ + "T7-LSS", + "N811LS", + "OE-LSS", + "OE-LLS", + "C-FWLS", + "HB-ZQK" + ] + }, + "Apollo Global Management": { + "category": "Business", + "registrations": [ + "N650XF" + ] + }, + "Government of Equatorial Guinea": { + "category": "Government", + "registrations": [ + "P4-SKN" + ] + }, + "Jared Isaacman": { + "category": "People", + "registrations": [ + "N135EM", + "N136EM", + "N82EM", + "N80EM", + "N137EM", + "N138EM", + "N29UB", + "N512XA" + ] + }, + "Brad Keselowski": { + "category": "Sports", + "registrations": [ + "N229BK", + "N629BK" + ] + }, + "J Balvin": { + "category": "Celebrity", + "registrations": [ + "N714JB" + ] + }, + "State of Idaho": { + "category": "State/Law", + "registrations": [ + "N239KQ", + "N121TD" + ] + }, + "Lyden Air Cargo": { + "category": "Other", + "registrations": [ + "P4-LAC", + "P4-LAS", + "N402LC", + "N410LC", + "N403LC", + "N401LC" + ] + }, + "Joby Aviation eVTOL": { + "category": "Test Aircraft", + "registrations": [ + "N542BJ" + ] + }, + "Stefan Drury": { + "category": "YouTubers", + "registrations": [ + "VH-EYZ" + ] + }, + "Max Verstappen": { + "category": "Formula 1", + "registrations": [ + "PH-UTL" + ] + }, + "AT&T": { + "category": "Business", + "registrations": [ + "N900SB", + "N775E" + ] + }, + "Government of Japan": { + "category": "Government", + "registrations": [ + "80-1112", + "80-1111" + ] + }, + "Marco Andretti": { + "category": "Sports", + "registrations": [ + "N800MA" + ] + }, + "Jackie Chan": { + "category": "Celebrity", + "registrations": [ + "N688JC" + ] + }, + "State of Illinois": { + "category": "State/Law", + "registrations": [ + "N4131Q", + "N551SP", + "N771SP", + "N881SP", + "N6484A", + "N971LL", + "N991LL", + "N661SP", + "N831LL", + "N981LL", + "N35945", + "N751LL" + ] + }, + "Pratt & Whitney Canada 747SP": { + "category": "Other", + "registrations": [ + "C-GTFF", + "C-FPAW" + ] + }, + "Bell V-280 Valor": { + "category": "Test Aircraft", + "registrations": [ + "N280BH" + ] + }, + "ENTP LIFE": { + "category": "YouTubers", + "registrations": [ + "N8623W" + ] + }, + "Michael Schumacher": { + "category": "Formula 1", + "registrations": [ + "M-IKEL" + ] + }, + "Bank of America": { + "category": "Business", + "registrations": [ + "N651BA", + "N228BA", + "N590BA", + "N286BA", + "N297BA", + "N285BA", + "N676BA" + ] + }, + "Government State of Kuwait": { + "category": "Government", + "registrations": [ + "9K-GAA", + "9K-AKD", + "9K-GBB", + "9K-GBA", + "9K-GCC", + "9K-GEA" + ] + }, + "Jack Ma": { + "category": "People", + "registrations": [ + "VP-CZM" + ] + }, + "Dale Earnhardt Family": { + "category": "Sports", + "registrations": [ + "N138DE", + "N3DE", + "N1DE", + "N500DE" + ] + }, + "Jerry Seinfeld": { + "category": "Celebrity", + "registrations": [ + "N845JS" + ] + }, + "State of Indiana": { + "category": "State/Law", + "registrations": [ + "N54SP", + "N193SP", + "N407SS", + "N507SP" + ] + }, + "Dassault Falcon Response Team": { + "category": "Other", + "registrations": [ + "N247FR", + "F-GOFX" + ] + }, + "Sikorsky SB-1 Defiant": { + "category": "Test Aircraft", + "registrations": [ + "N972SK", + "N971SK", + "N100FV" + ] + }, + "Plane and Dirt Simple": { + "category": "YouTubers", + "registrations": [ + "N26DT" + ] + }, + "Nelson Piquet": { + "category": "Formula 1", + "registrations": [ + "PR-JAQ" + ] + }, + "Bass Pro Shop": { + "category": "Business", + "registrations": [ + "N378TM", + "N372BP" + ] + }, + "Government of Russia": { + "category": "Government", + "registrations": [ + "RA-96024", + "RA-96019", + "RA-96021", + "RA-96018", + "RA-96023", + "RA-96014", + "RA-96012", + "RA-96016", + "RA-96017", + "RA-96020", + "RA-96022" + ] + }, + "Ken Griffin": { + "category": "People", + "registrations": [ + "N421AL", + "N302AK", + "N421SZ", + "N750KD" + ] + }, + "Joe Gibbs Racing": { + "category": "Sports", + "registrations": [ + "N518JG", + "N519JG", + "N520JG" + ] + }, + "Jim Carrey": { + "category": "Celebrity", + "registrations": [ + "N162JC" + ] + }, + "State of Iowa": { + "category": "State/Law", + "registrations": [ + "N23540", + "N231SP", + "N2231E", + "N227SP", + "N1921F", + "N171SP", + "N996CS" + ] + }, + "Phoenix Air Gulfstream II": { + "category": "Other", + "registrations": [ + "N165PA", + "N164PA" + ] + }, + "Alyssa Miller": { + "category": "YouTubers", + "registrations": [ + "N6355J" + ] + }, + "Piero Ferrari": { + "category": "Formula 1", + "registrations": [ + "PP-DLA", + "I-FACM" + ] + }, + "Berkshire Hathaway": { + "category": "Business", + "registrations": [ + "N235BH" + ] + }, + "Government of Turkey": { + "category": "Government", + "registrations": [ + "TC-DAP", + "TC-TUR", + "TC-ATA", + "TC-CBK", + "TC-GAP", + "TC-TRK" + ] + }, + "Kimbal Musk": { + "category": "People", + "registrations": [ + "N831FR" + ] + }, + "Denny Hamlin Racing": { + "category": "Sports", + "registrations": [ + "N400DH" + ] + }, + "Jimmy Buffet": { + "category": "Celebrity", + "registrations": [ + "N502JB" + ] + }, + "State of Kansas": { + "category": "State/Law", + "registrations": [ + "N600HP", + "N670HP", + "N980HP", + "N950HP", + "N650HP", + "N870HP", + "N900HP", + "N940HP" + ] + }, + "Calspan Flight Research": { + "category": "Other", + "registrations": [ + "N102VS", + "N304VS", + "N710CF" + ] + }, + "Leonardo AW609": { + "category": "Test Aircraft", + "registrations": [ + "N609PH", + "N609TR", + "N609PA" + ] + }, + "JR Garage (JR Aviation)": { + "category": "YouTubers", + "registrations": [ + "N62JR" + ] + }, + "Rubens Barrichello": { + "category": "Formula 1", + "registrations": [ + "HB-JEO", + "VP-CHP" + ] + }, + "Berrada Properties": { + "category": "Business", + "registrations": [ + "N737JB", + "N700YB" + ] + }, + "Government of the Netherlands": { + "category": "Government", + "registrations": [ + "PH-GOV", + "V117" + ] + }, + "Stephen Schwarzman": { + "category": "People", + "registrations": [ + "N113CS" + ] + }, + "Hendrick Motorsports": { + "category": "Sports", + "registrations": [ + "N509RH", + "N508RH", + "N1RH", + "N500RH" + ] + }, + "John Travolta": { + "category": "Celebrity", + "registrations": [ + "N492JT", + "N707JT", + "N500CE", + "N905FJ", + "N327JT" + ] + }, + "State of Kentucky": { + "category": "State/Law", + "registrations": [ + "N45SP", + "N148KY", + "N723KY", + "N220SP", + "N421WJ", + "N283SP", + "N36SP", + "N8237B", + "N24SP", + "N46SP", + "N282SP", + "N10SP" + ] + }, + "Surveillance Australia": { + "category": "Other", + "registrations": [ + "VH-XND VH-XNC VH-XNF" + ] + }, + "Scaled Composites Proteus": { + "category": "Test Aircraft", + "registrations": [ + "N281PR" + ] + }, + "Pickle Driver (SF50)": { + "category": "YouTubers", + "registrations": [ + "N32GK", + "N616DP" + ] + }, + "Scuderia AlphaTauri": { + "category": "Formula 1", + "registrations": [ + "OE-FAA" + ] + }, + "BIC Lighters and Pens": { + "category": "Business", + "registrations": [ + "N550BG" + ] + }, + "Government of Bangladesh": { + "category": "Government", + "registrations": [ + "S2-AJU" + ] + }, + "Steve Witkoff": { + "category": "People", + "registrations": [ + "N102WG" + ] + }, + "Stewart-Haas Racing": { + "category": "Sports", + "registrations": [ + "N60GH", + "N141SH" + ] + }, + "Julio Iglesias": { + "category": "Celebrity", + "registrations": [ + "N768JJ" + ] + }, + "State of Louisiana": { + "category": "State/Law", + "registrations": [ + "N918SP", + "N67183", + "N354SP", + "N101AF", + "N262AF", + "N382AF", + "N302AF", + "N64034", + "N91WF", + "N269SP", + "N65HA", + "N356SP", + "N508SP", + "N232AF", + "N357SP", + "N355SP", + "N261AF", + "N241AF", + "N522AF", + "N904HB", + "N812AF", + "N811AF", + "N252AF", + "N670SP", + "N430M", + "N5175E", + "N9750L", + "N281AF", + "N810SP" + ] + }, + "Mayo Clinic": { + "category": "Other", + "registrations": [ + "N350MC" + ] + }, + "Textron AirLand Scorpion": { + "category": "Test Aircraft", + "registrations": [ + "N531TA", + "N532TX", + "N534TX" + ] + }, + "Fly With Own (Non-owner Pilot)": { + "category": "YouTubers", + "registrations": [ + "N370RS" + ] + }, + "Sergio Perez": { + "category": "Formula 1", + "registrations": [ + "XA-ASP" + ] + }, + "BlackRock": { + "category": "Business", + "registrations": [ + "N10199", + "N1777M", + "N3788B" + ] + }, + "Government of South Africa": { + "category": "Government", + "registrations": [ + "ZS-RSA" + ] + }, + "George Lucas": { + "category": "People", + "registrations": [ + "N238MH", + "N138GL" + ] + }, + "Penske Racing": { + "category": "Sports", + "registrations": [ + "N500PR" + ] + }, + "Keith Urban": { + "category": "Celebrity", + "registrations": [ + "N510CX" + ] + }, + "State of Maine": { + "category": "State/Law", + "registrations": [ + "N985MF", + "N185SL", + "N880WS", + "N9494N", + "N407TN", + "N5339N", + "N61368" + ] + }, + "NAV Canada Flight Inspection": { + "category": "Other", + "registrations": [ + "C-GFIO", + "C-GNVC" + ] + }, + "BETA Tech eVTOL": { + "category": "Test Aircraft", + "registrations": [ + "N250UT" + ] + }, + "Ricky Gutierrez & JR Garage": { + "category": "YouTubers", + "registrations": [ + "N52TL" + ] + }, + "Blackstone": { + "category": "Business", + "registrations": [ + "N550TB" + ] + }, + "Royal Air Force": { + "category": "Government", + "registrations": [ + "G-XATW", + "ZZ336" + ] + }, + "James Simmons": { + "category": "People", + "registrations": [ + "N773MJ" + ] + }, + "Richard Childress Racing": { + "category": "Sports", + "registrations": [ + "N3RC" + ] + }, + "Kenny Chesney": { + "category": "Celebrity", + "registrations": [ + "N7KC" + ] + }, + "State of Maryland": { + "category": "State/Law", + "registrations": [ + "N381MD", + "N387MD", + "N389MD", + "N902MD", + "N9111G", + "N383MD", + "N390MD", + "N384MD", + "N385MD", + "N388MD", + "N386MD", + "N382MD", + "N125MD", + "N903MD" + ] + }, + "Life Lion (Hershey Medical Center)": { + "category": "Other", + "registrations": [ + "N611LL", + "N896LL", + "N921LL", + "N600LL", + "N916LL" + ] + }, + "Boeing 737-7 MAX": { + "category": "Test Aircraft", + "registrations": [ + "N7201S" + ] + }, + "christophe jouany": { + "category": "YouTubers", + "registrations": [ + "N14WS" + ] + }, + "BMW Automotive": { + "category": "Business", + "registrations": [ + "D-AUTO", + "D-ABMR", + "D-ABMW" + ] + }, + "National Nuclear Security Administration": { + "category": "Government", + "registrations": [ + "N878VF", + "N2316", + "N990ST", + "N305DQ", + "N980ST", + "N2317", + "N2319" + ] + }, + "Magic Johnson": { + "category": "People", + "registrations": [ + "N32MJ" + ] + }, + "Victory Aviation (NASCAR)": { + "category": "Sports", + "registrations": [ + "N25VA", + "N47VA", + "N67VA", + "N43VA", + "N87VA", + "N92VA", + "N15VA", + "N70VA", + "N46VA", + "N49VA" + ] + }, + "Kid Rock": { + "category": "Celebrity", + "registrations": [ + "N71KR" + ] + }, + "State of Massachusetts": { + "category": "State/Law", + "registrations": [ + "N824AH", + "N822PP", + "N823JM", + "N825MM", + "N6340F", + "N891TD" + ] + }, + "NASA": { + "category": "Other", + "registrations": [ + "N524NA", + "N528NA" + ] + }, + "Boeing 777 EcoDemonstrator": { + "category": "Test Aircraft", + "registrations": [ + "N861BC" + ] + }, + "Blue Star Airways": { + "category": "YouTubers", + "registrations": [ + "N317SR" + ] + }, + "BNSF Railway": { + "category": "Business", + "registrations": [ + "N459BN", + "N331BN" + ] + }, + "New Zealand Air Force": { + "category": "Government", + "registrations": [ + "NZ7571", + "NZ7572" + ] + }, + "Johnny Ive": { + "category": "People", + "registrations": [ + "N51VE" + ] + }, + "Aaron Rogers": { + "category": "Sports", + "registrations": [ + "N98AC" + ] + }, + "Kim Kardashian": { + "category": "Celebrity", + "registrations": [ + "N1980K" + ] + }, + "State of Michigan": { + "category": "State/Law", + "registrations": [ + "N9461Z", + "N383ST", + "N162ST", + "N733XN", + "N2463B", + "N827ST", + "N111SP", + "N312ST", + "N1655M", + "N5101U", + "N4617E", + "N6275S", + "N768ST" + ] + }, + "Boeing 787-8 Test Bed": { + "category": "Test Aircraft", + "registrations": [ + "N7874" + ] + }, + "SlowAsianDriver": { + "category": "YouTubers", + "registrations": [ + "N888FU" + ] + }, + "Calspan Defense Corp": { + "category": "Business", + "registrations": [ + "N710CF", + "N721CF" + ] + }, + "Government of Ukraine": { + "category": "Government", + "registrations": [ + "UR-ABA" + ] + }, + "Craig McCaw": { + "category": "People", + "registrations": [ + "N222MC", + "N688MC" + ] + }, + "Troy Aikman": { + "category": "Sports", + "registrations": [ + "N8TA", + "N270GP" + ] + }, + "Kylie Jenner": { + "category": "Celebrity", + "registrations": [ + "N810KJ" + ] + }, + "State of Minnesota": { + "category": "State/Law", + "registrations": [ + "N529NR", + "N119SP", + "N105NR", + "N16MN", + "N112SP", + "N55MN", + "N118SP", + "N114SP", + "N70MN", + "N805NR", + "N115SP", + "N905NR", + "N605NR", + "N205NR", + "N125NR", + "N155NR", + "N5897E", + "N705NR", + "N145NR", + "N528NR", + "N14MN" + ] + }, + "National Science Foundation": { + "category": "Other", + "registrations": [ + "N677F", + "N130AR" + ] + }, + "Stratos 716": { + "category": "Test Aircraft", + "registrations": [ + "N716X" + ] + }, + "Grant Baker": { + "category": "YouTubers", + "registrations": [ + "N921NG" + ] + }, + "CarMax": { + "category": "Business", + "registrations": [ + "N75KX" + ] + }, + "Israel Air Force": { + "category": "Government", + "registrations": [ + "676.0" + ] + }, + "John McCaw": { + "category": "People", + "registrations": [ + "N1NE" + ] + }, + "Russell Wilson": { + "category": "Sports", + "registrations": [ + "N330RW" + ] + }, + "Luke Bryan": { + "category": "Celebrity", + "registrations": [ + "N69FH" + ] + }, + "State of Mississippi": { + "category": "State/Law", + "registrations": [ + "N350MS", + "N28SM", + "N956SM", + "N351MS", + "N30SM" + ] + }, + "Innovation First Research and Development Inc": { + "category": "Other", + "registrations": [ + "N213EM" + ] + }, + "Boeing 757 (F-22 Testbed)": { + "category": "Test Aircraft", + "registrations": [ + "N757A" + ] + }, + "Ginger the Plane": { + "category": "YouTubers", + "registrations": [ + "N12768" + ] + }, + "Carrier Corp": { + "category": "Business", + "registrations": [ + "N1902C" + ] + }, + "Government of Iran": { + "category": "Government", + "registrations": [ + "EP-IGC" + ] + }, + "Phil Knight (NIKE)": { + "category": "People", + "registrations": [ + "N19HT" + ] + }, + "Las Vegas Golden Knights": { + "category": "Sports", + "registrations": [ + "N622GK" + ] + }, + "Mark Wahlberg": { + "category": "Celebrity", + "registrations": [ + "N989DM", + "N143MW" + ] + }, + "State of Missouri": { + "category": "State/Law", + "registrations": [ + "N83MP", + "N128VT", + "N338MC", + "N81MP", + "N92MP", + "N94MP", + "N402MC", + "N96MP", + "N93MP", + "N95MP", + "N90MP", + "N84MC", + "N91MP" + ] + }, + "T2 Aviation (Oil Spill Response": { + "category": "Other", + "registrations": [ + "G-OSRA", + "G-OSRB" + ] + }, + "Micke Lang": { + "category": "YouTubers", + "registrations": [ + "OEUDA" + ] + }, + "Carvana/DriveTime": { + "category": "Business", + "registrations": [ + "N50VC", + "N650C" + ] + }, + "Government of Canada": { + "category": "Government", + "registrations": [ + "144619", + "144617", + "15002", + "144600", + "15005", + "15003", + "15004", + "15001" + ] + }, + "Rick Caruso": { + "category": "People", + "registrations": [ + "N1759C" + ] + }, + "Sergio Garcia": { + "category": "Sports", + "registrations": [ + "N901SG" + ] + }, + "Michael Jordan": { + "category": "Celebrity", + "registrations": [ + "N236MJ" + ] + }, + "State of Montana": { + "category": "State/Law", + "registrations": [ + "N61CV", + "N1664R", + "N6110A", + "N384M", + "N4644Y", + "N6690", + "N8862Y", + "N447MA", + "N368M", + "N151HP", + "N42178", + "N6962C", + "N28KP", + "N1604Z", + "N4622E" + ] + }, + "FAAM Airborne Laboratory": { + "category": "Other", + "registrations": [ + "G-LUXE" + ] + }, + "Gulfstream G400": { + "category": "Test Aircraft", + "registrations": [ + "N400G" + ] + }, + "Meet Kevin": { + "category": "YouTubers", + "registrations": [ + "N88W", + "N964PP" + ] + }, + "Caterpillar Inc.": { + "category": "Business", + "registrations": [ + "N385CT", + "N797CT" + ] + }, + "Royal Australian Air Force": { + "category": "Government", + "registrations": [ + "A56-002", + "A62-002", + "A36-002", + "A56-001", + "A36-001", + "A56-003 A62-001" + ] + }, + "Eric Schmidt": { + "category": "People", + "registrations": [ + "N785QS", + "N652WE", + "N651WE" + ] + }, + "Tennessee Titans": { + "category": "Sports", + "registrations": [ + "N200BA" + ] + }, + "Oprah Winfrey": { + "category": "Celebrity", + "registrations": [ + "N540W" + ] + }, + "State of Nebraska": { + "category": "State/Law", + "registrations": [ + "N575NE", + "N84NE", + "N373NE", + "N2383L" + ] + }, + "Airbus Racer": { + "category": "Test Aircraft", + "registrations": [ + "F-WRAC" + ] + }, + "MATCH1N": { + "category": "YouTubers", + "registrations": [ + "N30AQ" + ] + }, + "CBS Media": { + "category": "Business", + "registrations": [ + "N75VB", + "N8VB" + ] + }, + "Government/Police of Mexico": { + "category": "Government", + "registrations": [ + "XC-NPF", + "XC-MPF" + ] + }, + "DeVos Family": { + "category": "People", + "registrations": [ + "N252DV", + "N255DV", + "N251DV", + "N254DV", + "N256DV", + "N257DV", + "N258DV" + ] + }, + "Drew Brees": { + "category": "Sports", + "registrations": [ + "N15QB" + ] + }, + "Ozuna": { + "category": "Celebrity", + "registrations": [ + "N600CK" + ] + }, + "State of Nevada": { + "category": "State/Law", + "registrations": [ + "N212DF", + "N711NV", + "N777NV", + "N407FG", + "N407JS", + "N777NX" + ] + }, + "Excalibur Testbed": { + "category": "Test Aircraft", + "registrations": [ + "G-FTAI" + ] + }, + "Mike Patey": { + "category": "YouTubers", + "registrations": [ + "N22LP" + ] + }, + "Chevron": { + "category": "Business", + "registrations": [ + "N1876P", + "N1895T", + "N1901G" + ] + }, + "Government of North Korea": { + "category": "Government", + "registrations": [ + "P-671", + "P-632" + ] + }, + "Yusaku Mazawa": { + "category": "People", + "registrations": [ + "N555MZ" + ] + }, + "LA Chargers": { + "category": "Sports", + "registrations": [ + "N70AG" + ] + }, + "Pitbull": { + "category": "Celebrity", + "registrations": [ + "N305PB", + "N365WW" + ] + }, + "State of New Hampshire": { + "category": "State/Law", + "registrations": [ + "N366SP", + "N366NH" + ] + }, + "Hermeus Quarterhorse": { + "category": "Test Aircraft", + "registrations": [ + "N60304" + ] + }, + "Wifi-Money": { + "category": "YouTubers", + "registrations": [ + "N814ST" + ] + }, + "Chick-Fil-A": { + "category": "Business", + "registrations": [ + "N967TC" + ] + }, + "Government of Malaysia": { + "category": "Government", + "registrations": [ + "M48-02", + "9M-NAA", + "9M-NAB" + ] + }, + "Richard Branson": { + "category": "People", + "registrations": [ + "M-GGAL" + ] + }, + "Riley Herbst": { + "category": "Sports", + "registrations": [ + "N669T" + ] + }, + "Playboy": { + "category": "Celebrity", + "registrations": [ + "N950PB" + ] + }, + "State of New Jersey": { + "category": "State/Law", + "registrations": [ + "N110NJ", + "N6NJ", + "N3NJ", + "N2NJ", + "N4NJ", + "N9NJ", + "N5NJ", + "N7NJ", + "N1NJ" + ] + }, + "Blue Max Six": { + "category": "YouTubers", + "registrations": [ + "N682TM" + ] + }, + "Chipotle": { + "category": "Business", + "registrations": [ + "N793CG", + "N793MG" + ] + }, + "Government of Egypt": { + "category": "Government", + "registrations": [ + "SU-BTT", + "SU-EGY" + ] + }, + "Tony Robbins": { + "category": "People", + "registrations": [ + "N950TR" + ] + }, + "Robert Penske": { + "category": "Sports", + "registrations": [ + "N1RP", + "N500RP" + ] + }, + "Jay-Z": { + "category": "Celebrity", + "registrations": [ + "N44440" + ] + }, + "State of New Mexico": { + "category": "State/Law", + "registrations": [ + "N91GF", + "N605SP", + "N575NM", + "N607SP" + ] + }, + "Gear Down": { + "category": "YouTubers", + "registrations": [ + "N28AR", + "N888PN" + ] + }, + "Choice Hotels": { + "category": "Business", + "registrations": [ + "N472K" + ] + }, + "Government of Zambia": { + "category": "Government", + "registrations": [ + "AF002", + "AF222", + "N425HP", + "AF001", + "AF608" + ] + }, + "Tiger Woods": { + "category": "People", + "registrations": [ + "N517TW" + ] + }, + "Jim Crane/Houston Astros": { + "category": "Sports", + "registrations": [ + "N512GD" + ] + }, + "Rick Ross": { + "category": "Celebrity", + "registrations": [ + "N33055" + ] + }, + "State of New York": { + "category": "State/Law", + "registrations": [ + "N13SP", + "N749SP", + "N605", + "N651SP", + "N129SP", + "N9SP", + "N17SP", + "N200NY", + "N430SP", + "N430NY", + "N20SP", + "N432NY", + "N16SP", + "N761NY", + "N201NY", + "N11SP", + "N224SP", + "N18SP", + "N12SP", + "N61SP", + "N19SP", + "N174SP" + ] + }, + "Becki and Chris": { + "category": "YouTubers", + "registrations": [ + "N300WZ" + ] + }, + "Cisco Systems": { + "category": "Business", + "registrations": [ + "N60TE", + "N80TE" + ] + }, + "Government of the United Kingdom": { + "category": "Government", + "registrations": [ + "GZ100", + "ZZ336", + "G-GBNI", + "G-ZAHS", + "G-XXEB", + "G-XXED", + "G-ZABH" + ] + }, + "Sebastian Kulczyk": { + "category": "People", + "registrations": [ + "D-ADSK" + ] + }, + "John Henry/Boston Red Sox": { + "category": "Sports", + "registrations": [ + "N510GD" + ] + }, + "Rihanna": { + "category": "Celebrity", + "registrations": [ + "N220F" + ] + }, + "State of North Carolina": { + "category": "State/Law", + "registrations": [ + "N406NC", + "N9542W", + "N803NC", + "N800NC", + "N350NC", + "N407NC", + "N404NC", + "N22593", + "N401NC", + "N421NC", + "N735EK", + "N735AX", + "N6492G", + "N735ED", + "N370NC", + "N103NC", + "N735DN", + "N193P", + "N405NC", + "N801NC", + "N3NC", + "N3521K", + "N42058", + "N1712S", + "N920NC" + ] + }, + "Blaze Grubbs": { + "category": "YouTubers", + "registrations": [ + "N317SP", + "N12VJ" + ] + }, + "Citigroup": { + "category": "Business", + "registrations": [ + "N6012C", + "N8012C", + "N805WM", + "N2019C" + ] + }, + "Government of Spain": { + "category": "Government", + "registrations": [ + "T.18-4", + "T.222" + ] + }, + "Kilmer Management LP": { + "category": "Sports", + "registrations": [ + "C-GLJT" + ] + }, + "State of North Dakota": { + "category": "State/Law", + "registrations": [ + "N228ND", + "N200ND", + "N799GF", + "N202ND", + "N299SP", + "N6284S" + ] + }, + "Accidental Aviator": { + "category": "YouTubers", + "registrations": [ + "N282WB" + ] + }, + "Clayton Homes": { + "category": "Business", + "registrations": [ + "N1KA" + ] + }, + "Government of Croatia": { + "category": "Government", + "registrations": [ + "9A-CRO" + ] + }, + "Olympia Aviation (Detroit Red Wings/Tigers)": { + "category": "Sports", + "registrations": [ + "N559LC", + "N682RW" + ] + }, + "Sammy Hagar": { + "category": "Celebrity", + "registrations": [ + "N1013" + ] + }, + "State of Ohio": { + "category": "State/Law", + "registrations": [ + "N387LJ", + "N850H", + "N514HP", + "N71HP", + "N6HP", + "N490NR", + "N65HP", + "N716HP", + "N18HP", + "N717HP", + "N910HP", + "N113HP", + "N856H", + "N73HP", + "N12HP", + "N810H", + "N860H", + "N715HP", + "N311HP", + "N550NR", + "N480NR", + "N19HP", + "N72HP", + "N17HP" + ] + }, + "Coca-Cola": { + "category": "Business", + "registrations": [ + "N10274", + "N959RW", + "N982RW", + "N886RW", + "N902FH", + "N901FH" + ] + }, + "Government of Bulgaria": { + "category": "Government", + "registrations": [ + "LZ-AOB" + ] + }, + "David Rubenstein": { + "category": "People", + "registrations": [ + "N524EA" + ] + }, + "John Mara/NY Giants": { + "category": "Sports", + "registrations": [ + "N5117", + "N17NY" + ] + }, + "Sebastian Maniscalco": { + "category": "Celebrity", + "registrations": [ + "N877H" + ] + }, + "State of Oklahoma": { + "category": "State/Law", + "registrations": [ + "N880DT", + "N60HP", + "N200HP", + "N90HP", + "N370HP" + ] + }, + "Congra Brands": { + "category": "Business", + "registrations": [ + "N863CA", + "N820CA", + "N824CA" + ] + }, + "Government of Czech Republic": { + "category": "Government", + "registrations": [ + "2801", + "3085" + ] + }, + "Vasil Bojkov": { + "category": "People", + "registrations": [ + "LZ-VBE" + ] + }, + "Saints/Pelicans": { + "category": "Sports", + "registrations": [ + "N411ST" + ] + }, + "Shaq": { + "category": "Celebrity", + "registrations": [ + "N3250N" + ] + }, + "State of Oregon": { + "category": "State/Law", + "registrations": [ + "N9000V", + "N2237S", + "N17386", + "N2181N" + ] + }, + "Conoco": { + "category": "Business", + "registrations": [ + "N795CP", + "N405CP", + "N796CP", + "N794CP", + "N790CP", + "N793CP", + "N792CP", + "N621AR" + ] + }, + "Government of Poland": { + "category": "Government", + "registrations": [ + "0112", + "SP-LIG" + ] + }, + "Mark Zuckerberg": { + "category": "People", + "registrations": [ + "N3880", + "N68885" + ] + }, + "Ron Fowler/San Diego Padres": { + "category": "Sports", + "registrations": [ + "N78SD" + ] + }, + "Steven Spielberg": { + "category": "Celebrity", + "registrations": [ + "N700KS", + "N800KS" + ] + }, + "State of Pennsylvania": { + "category": "State/Law", + "registrations": [ + "N872ST", + "N878ST", + "N871ST", + "N874ST", + "N81PA", + "N875ST", + "N873ST", + "N879ST", + "N876St" + ] + }, + "ConocoPhillips": { + "category": "Business", + "registrations": [ + "N665P", + "N668P", + "N660P" + ] + }, + "Government of Slovenia": { + "category": "Government", + "registrations": [ + "L1-01" + ] + }, + "Mike Bloomberg": { + "category": "People", + "registrations": [ + "N8AG", + "N10MV", + "N6MV", + "N47EG", + "N5MV" + ] + }, + "John Middleton/Phillies": { + "category": "Sports", + "registrations": [ + "N604JJ" + ] + }, + "Toby Kieth": { + "category": "Celebrity", + "registrations": [ + "N405TK" + ] + }, + "Costar Realty": { + "category": "Business", + "registrations": [ + "N50KC" + ] + }, + "Government of Cote d'Ivoire": { + "category": "Government", + "registrations": [ + "TU-VAS", + "TU-VAJ", + "TU-VAE" + ] + }, + "Jim Ovia": { + "category": "People", + "registrations": [ + "N331AB" + ] + }, + "Cristiano Ronaldo": { + "category": "Sports", + "registrations": [ + "LX-GOL" + ] + }, + "Tom Cruise": { + "category": "Celebrity", + "registrations": [ + "N77VA" + ] + }, + "State of South Carolina": { + "category": "State/Law", + "registrations": [ + "N504SL", + "N502SL", + "N2SC", + "N1SC", + "N8WL", + "N19WL", + "N500SC" + ] + }, + "Business": { + "category": "Business", + "registrations": [ + "Section 5", + "Section 3", + "Section 2", + "Section 4" + ] + }, + "Government": { + "category": "Government", + "registrations": [ + "Section 3", + "Section 2", + "Section 4" + ] + }, + "People": { + "category": "People", + "registrations": [ + "Section 5", + "Section 3", + "Section 2", + "Section 4" + ] + }, + "Sports": { + "category": "Sports", + "registrations": [ + "Section 2" + ] + }, + "Celebrity": { + "category": "Celebrity", + "registrations": [ + "Section 2" + ] + }, + "State Govt./Law": { + "category": "State/Law", + "registrations": [ + "Section 2" + ] + }, + "Other": { + "category": "Other", + "registrations": [ + "Section 2" + ] + }, + "Test Aircraft": { + "category": "Test Aircraft", + "registrations": [ + "Section 2" + ] + }, + "YouTubers": { + "category": "YouTubers", + "registrations": [ + "Section 2" + ] + }, + "Formula 1 VIP's": { + "category": "Formula 1", + "registrations": [ + "Section 2" + ] + }, + "Silver Lake Technology Management": { + "category": "Business", + "registrations": [ + "N131DS" + ] + }, + "Government of Nigeria": { + "category": "Government", + "registrations": [ + "5N-FGZ", + "5N-FGS", + "5N-FGA", + "5N-FGW", + "5N-FG1", + "5N-FGU", + "5N-FGV", + "NAF-961", + "5N-FG2" + ] + }, + "David Geffen": { + "category": "People", + "registrations": [ + "N221DG" + ] + }, + "Jody Allen/Seahawks & Trail Blazers (Paul Allen Estate)": { + "category": "Sports", + "registrations": [ + "N650AF" + ] + }, + "Tyler Perry": { + "category": "Celebrity", + "registrations": [ + "N387TP", + "N378AP", + "N387AP", + "N378TP" + ] + }, + "State of South Dakota": { + "category": "State/Law", + "registrations": [ + "N975KA", + "N63628", + "N773SD", + "N2118A" + ] + }, + "Costco Wholesale": { + "category": "Business", + "registrations": [ + "N91CW", + "N82CW", + "N84CW N86CW", + "N83CW", + "N93CW" + ] + }, + "Government of Pakistan": { + "category": "Government", + "registrations": [ + "J-756", + "J-755" + ] + }, + "Laurene Powell Jobs": { + "category": "People", + "registrations": [ + "N2N" + ] + }, + "Rory McIlroy": { + "category": "Sports", + "registrations": [ + "N1989R" + ] + }, + "Dierks Bentley": { + "category": "Celebrity", + "registrations": [ + "N446CJ" + ] + }, + "State of Tennessee": { + "category": "State/Law", + "registrations": [ + "N10EC", + "N110EC", + "N760HP", + "N780HP", + "N510EC", + "N210EC", + "N750HP", + "N910EC" + ] + }, + "COX TV/Communications": { + "category": "Business", + "registrations": [ + "N1640", + "N1040C", + "N1040" + ] + }, + "Government of Gabon": { + "category": "Government", + "registrations": [ + "TR-KGM" + ] + }, + "Ralph Lauren": { + "category": "People", + "registrations": [ + "N711RL" + ] + }, + "John Elway": { + "category": "Sports", + "registrations": [ + "N750JE" + ] + }, + "Paris Hilton": { + "category": "Celebrity", + "registrations": [ + "N11PH" + ] + }, + "State of Texas": { + "category": "State/Law", + "registrations": [ + "N329TX", + "N824TX", + "N204TX", + "N702TX", + "N504TX", + "N219TX", + "N1727L", + "N243TX", + "N454TB", + "N124TX", + "N1TX", + "N956TX", + "N60TX", + "N191TX", + "N502TX", + "N200RR", + "N40TX", + "N90TX", + "N146TX", + "N244TX", + "N503TX", + "N405TX", + "N430TX", + "N215TX", + "N148TX", + "N147TX", + "N5271B", + "N844TX", + "N819TX" + ] + }, + "Cracker Barrel": { + "category": "Business", + "registrations": [ + "N68CB" + ] + }, + "Government of Brazil": { + "category": "Government", + "registrations": [ + "2585", + "2101" + ] + }, + "Adam Weitsman": { + "category": "People", + "registrations": [ + "N173JM" + ] + }, + "Adam Scott": { + "category": "Sports", + "registrations": [ + "N716AS" + ] + }, + "DJ Khaled": { + "category": "Celebrity", + "registrations": [ + "N2320" + ] + }, + "State of Utah": { + "category": "State/Law", + "registrations": [ + "N352HP", + "N354HP", + "N253HP", + "N773TP", + "N353HP" + ] + }, + "Cummins Inc": { + "category": "Business", + "registrations": [ + "N283CE", + "N282CE", + "N281CE", + "N804CE" + ] + }, + "Government of Panama": { + "category": "Government", + "registrations": [ + "HP-1A" + ] + }, + "Nancy Walton": { + "category": "People", + "registrations": [ + "N515PL" + ] + }, + "David Tepper": { + "category": "Sports", + "registrations": [ + "N793AP" + ] + }, + "CVS": { + "category": "Business", + "registrations": [ + "N327RX", + "N214TF", + "N812RX" + ] + }, + "Government of Italy": { + "category": "Government", + "registrations": [ + "MM62243" + ] + }, + "Tim Gillean": { + "category": "People", + "registrations": [ + "N915FG" + ] + }, + "Robert Kraft": { + "category": "Sports", + "registrations": [ + "N616KG", + "N618KG", + "N605KG" + ] + }, + "State of Virginia": { + "category": "State/Law", + "registrations": [ + "N26VA", + "N1VA", + "N34VA", + "N5VA", + "N30VA", + "N71VA", + "N27VA", + "N32VA", + "N35VA", + "N764VA", + "N39VA", + "N2VA", + "N28VA", + "N36VA" + ] + }, + "Dell": { + "category": "Business", + "registrations": [ + "N6D" + ] + }, + "Government of Switzerland": { + "category": "Government", + "registrations": [ + "T-786", + "T-785", + "T-787", + "T-752", + "T-784" + ] + }, + "Ha Du Long": { + "category": "People", + "registrations": [ + "P4-MLO" + ] + }, + "Jason Kelce": { + "category": "Sports", + "registrations": [ + "N620JK", + "N906MC" + ] + }, + "State of Washington": { + "category": "State/Law", + "registrations": [ + "N2446X", + "N565E", + "N305DK", + "N216KQ", + "N357PN", + "N207HB", + "N305RC", + "N102LP", + "N3532K" + ] + }, + "Dick's Sporting Goods": { + "category": "Business", + "registrations": [ + "N717DX", + "N607DX", + "N235DX" + ] + }, + "Government of Hungary": { + "category": "Government", + "registrations": [ + "606", + "607", + "605", + "604" + ] + }, + "Nick Woodman": { + "category": "People", + "registrations": [ + "N74VW" + ] + }, + "Craig Leipold/Minnesota Wild": { + "category": "Sports", + "registrations": [ + "N919CH", + "N360PZ" + ] + }, + "State of West Virginia": { + "category": "State/Law", + "registrations": [ + "N6WV", + "N3WV", + "N1WV", + "N5WV", + "N890SP" + ] + }, + "DigitalBridge": { + "category": "Business", + "registrations": [ + "N858MY" + ] + }, + "Government of Ireland": { + "category": "Government", + "registrations": [ + "258.0" + ] + }, + "Sawiris Family": { + "category": "People", + "registrations": [ + "M-YNNS", + "T7-MASHI", + "M-NSTR" + ] + }, + "Detroit Red Wings": { + "category": "Sports", + "registrations": [ + "N313TR" + ] + }, + "State of Wisconsin": { + "category": "State/Law", + "registrations": [ + "N204W", + "N832MA", + "N735UY", + "N100DB", + "N831MA", + "N395W", + "N6991H", + "N1050V", + "N833MA", + "N17UP", + "N389W", + "N2397S", + "N387W", + "N182NR", + "N337SS" + ] + }, + "Dillards Dept. Stores": { + "category": "Business", + "registrations": [ + "N914BD" + ] + }, + "Government of Chile": { + "category": "Government", + "registrations": [ + "921", + "913", + "922", + "914", + "912", + "911", + "985" + ] + }, + "Ted Turner": { + "category": "People", + "registrations": [ + "N17TE" + ] + }, + "Patrick Mahomes (Part Owner)": { + "category": "Sports", + "registrations": [ + "N84PH" + ] + }, + "State of Wyoming": { + "category": "State/Law", + "registrations": [ + "N104WY", + "N101WY", + "N102WY" + ] + }, + "Dippin Dots": { + "category": "Business", + "registrations": [ + "N590MC" + ] + }, + "Johor Royal Family": { + "category": "Government", + "registrations": [ + "9M-TMJ", + "9M-ZZZ", + "9M-III", + "9M-SJI", + "9M-JS1", + "9M-JJJ" + ] + }, + "Tilman Fertitta": { + "category": "People", + "registrations": [ + "M-BDWK", + "N625GN", + "N100GN", + "N252TF", + "N650FJ" + ] + }, + "Lionel Messi": { + "category": "Sports", + "registrations": [ + "LV-IRQ" + ] + }, + "Discovery Land Company Real Estate": { + "category": "Business", + "registrations": [ + "N290DL", + "N260DL" + ] + }, + "Government of Ecuador": { + "category": "Government", + "registrations": [ + "FAE052", + "FAE-051" + ] + }, + "Shahid Khan": { + "category": "People", + "registrations": [ + "N435FG", + "N335FG", + "N919FG" + ] + }, + "Disney": { + "category": "Business", + "registrations": [ + "N900ES", + "N200ES", + "N500ES", + "N100ES" + ] + }, + "Government of Thailand": { + "category": "Government", + "registrations": [ + "HS-TYV", + "HS-TYT" + ] + }, + "Santo Domingo Family": { + "category": "People", + "registrations": [ + "8P-BSD", + "8P-ASD" + ] + }, + "DMB Associates Real Estate": { + "category": "Business", + "registrations": [ + "N499JB" + ] + }, + "Andrew Forrest": { + "category": "People", + "registrations": [ + "VH-CPH", + "VH-FMG" + ] + }, + "Dollar General": { + "category": "Business", + "registrations": [ + "N855DG" + ] + }, + "Kingdom of Eswatini": { + "category": "Government", + "registrations": [ + "3DC-SDF" + ] + }, + "Steve Ballmer": { + "category": "People", + "registrations": [ + "N709DS" + ] + }, + "Dollar Tree": { + "category": "Business", + "registrations": [ + "N441DT" + ] + }, + "Government of Belarus": { + "category": "Government", + "registrations": [ + "EW-001PB", + "EW-301PJ", + "EW-001PA" + ] + }, + "Arthur Blank": { + "category": "People", + "registrations": [ + "N62LV", + "N611BF" + ] + }, + "Domino's": { + "category": "Business", + "registrations": [ + "N147CJ" + ] + }, + "Government of Germany": { + "category": "Government", + "registrations": [ + "14+02 3F4E27", + "15+02 3F551D", + "14+07 3EBE12", + "15+10 3F5407", + "14+04 3F7B3C", + "14+06 3EBD41", + "15+04 3F97FD", + "14+03 3F6533", + "16+01 3EB1A6", + "10+03 3E854F", + "14+05 3E95CA", + "16+02 3E89E7", + "15+01 3F7DC1" + ] + }, + "John W. Henry": { + "category": "People", + "registrations": [ + "N627JW" + ] + }, + "Draft Kings": { + "category": "Business", + "registrations": [ + "N34681" + ] + }, + "Government of Algeria": { + "category": "Government", + "registrations": [ + "7T-VPS", + "7T-VPM", + "7T-VPC", + "7T-VPG", + "7T-VPP" + ] + }, + "Jim Crane": { + "category": "People", + "registrations": [ + "N312JC" + ] + }, + "DS Advisors (Equitec)": { + "category": "Business", + "registrations": [ + "N652BA", + "N848JA" + ] + }, + "Government of Angola": { + "category": "Government", + "registrations": [ + "T7-ANG", + "D2-ANG", + "D2-ANT", + "D2-ANH" + ] + }, + "Jimmy Johnson": { + "category": "People", + "registrations": [ + "N480JJ" + ] + }, + "Duke Energy": { + "category": "Business", + "registrations": [ + "N139DE", + "N575MW", + "N407LT" + ] + }, + "Government of Argentina": { + "category": "Government", + "registrations": [ + "ARG-02", + "ARG-01" + ] + }, + "Stan Kronke": { + "category": "People", + "registrations": [ + "N843GG", + "N729KF", + "N218KF" + ] + }, + "Dutch Bros Coffee": { + "category": "Business", + "registrations": [ + "N992DB" + ] + }, + "Government of Armenia": { + "category": "Government", + "registrations": [ + "701.0" + ] + }, + "Sergey Brin": { + "category": "People", + "registrations": [ + "N998PB" + ] + }, + "Eli Lilly and Company": { + "category": "Business", + "registrations": [ + "N308EL", + "N307EL" + ] + }, + "Government of Azerbaijan": { + "category": "Government", + "registrations": [ + "4K-AZ888", + "4K-8888", + "4K-AI08", + "4K-AI88", + "4K-AI001", + "4K-AI07", + "4K-AI06", + "4k-AI01" + ] + }, + "Ted Leonsis": { + "category": "People", + "registrations": [ + "N814LL" + ] + }, + "Enterprise Car Rental": { + "category": "Business", + "registrations": [ + "N56EL", + "N57EL" + ] + }, + "Bahrain Royal Flight": { + "category": "Government", + "registrations": [ + "A9C-HAK", + "A9C-HMK", + "A9C-BHR", + "A9C-SLM", + "A9C-BDF", + "A9C-KOB", + "A9C-BAH", + "A9C-BRN", + "A9C-HMH", + "A9C-ISA" + ] + }, + "Phil Ruffin": { + "category": "People", + "registrations": [ + "N443PR", + "N44PR", + "N43PR" + ] + }, + "ExxonMobile": { + "category": "Business", + "registrations": [ + "N300A", + "N100A", + "N200A", + "N283EM", + "N285EM" + ] + }, + "Government of Belgium": { + "category": "Government", + "registrations": [ + "CD-01", + "OO-LUM", + "OO-FAE" + ] + }, + "Paul L. Foster": { + "category": "People", + "registrations": [ + "N5PF" + ] + }, + "FedEx": { + "category": "Business", + "registrations": [ + "N26FE", + "N35FE", + "N43FE", + "N1FE", + "N37FE", + "N21FE", + "N28FE", + "N39FE", + "N2FE", + "N6FE", + "N24FE" + ] + }, + "Government of Bolivia": { + "category": "Government", + "registrations": [ + "FAB-002", + "FAB-001" + ] + }, + "Wesley Edens": { + "category": "People", + "registrations": [ + "N888ZF" + ] + }, + "First Horizon Bank": { + "category": "Business", + "registrations": [ + "N47SC" + ] + }, + "Government of Tanzania": { + "category": "Government", + "registrations": [ + "5H-ONE" + ] + }, + "Jeff Bezos": { + "category": "People", + "registrations": [ + "N756LB", + "N11AF", + "N7WW", + "N2AF" + ] + }, + "Five Guys": { + "category": "Business", + "registrations": [ + "N881MJ" + ] + }, + "Government of Turkmenistan": { + "category": "Government", + "registrations": [ + "EZ-B023", + "EZ-A700", + "EZ-B022", + "EZ-B024", + "EZ-B021", + "EZ-G7500" + ] + }, + "Fertitta (Casinos + Houston Rockets)": { + "category": "People", + "registrations": [ + "N702F", + "N762F", + "N122GA", + "N721F", + "N723GD" + ] + }, + "Ford": { + "category": "Business", + "registrations": [ + "N328K", + "N330K", + "N326K" + ] + }, + "Republic of Tatarstan(RU)": { + "category": "Government", + "registrations": [ + "RA-09606" + ] + }, + "David MacNeil": { + "category": "People", + "registrations": [ + "N1DM" + ] + }, + "Franklin Templeton Investments": { + "category": "Business", + "registrations": [ + "N123FT", + "N388FT", + "N221FT", + "N328MM" + ] + }, + "Government of Jordan": { + "category": "Government", + "registrations": [ + "VQ-BJO", + "VP-BHM", + "VQ-BNZ" + ] + }, + "Mike Lindell": { + "category": "People", + "registrations": [ + "N356ML" + ] + }, + "GAP Inc.": { + "category": "Business", + "registrations": [ + "N812G" + ] + }, + "John Paulson": { + "category": "People", + "registrations": [ + "N288DG" + ] + }, + "General Dynamics": { + "category": "Business", + "registrations": [ + "N586G", + "N587G" + ] + }, + "Joe Manchin": { + "category": "People", + "registrations": [ + "N8439E" + ] + }, + "Globus Medical": { + "category": "Business", + "registrations": [ + "N775GM", + "N776GM" + ] + }, + "Dennis Washington": { + "category": "People", + "registrations": [ + "N162WC" + ] + }, + "Goldman Sachs": { + "category": "Business", + "registrations": [ + "N280WS", + "N650WS" + ] + }, + "Murdoch Family": { + "category": "People", + "registrations": [ + "N89NC", + "N988NC", + "N900NC", + "N898NC" + ] + }, + "Goodyear Tire & Rubber Company": { + "category": "Business", + "registrations": [ + "N20G", + "N24G", + "N22G" + ] + }, + "Dan Newlin": { + "category": "People", + "registrations": [ + "N444DN", + "N851PB" + ] + }, + "Google": { + "category": "Business", + "registrations": [ + "N10XG", + "N232G", + "N998PB", + "N904G", + "N222GV" + ] + }, + "Leon Black": { + "category": "People", + "registrations": [ + "N650XF" + ] + }, + "Grady White Boats": { + "category": "Business", + "registrations": [ + "N68GW" + ] + }, + "Great Clips": { + "category": "Business", + "registrations": [ + "N716GC" + ] + }, + "Mark Benioff": { + "category": "People", + "registrations": [ + "N808XX" + ] + }, + "Guggenheim Partners": { + "category": "Business", + "registrations": [ + "N2LA" + ] + }, + "Jim Breyer": { + "category": "People", + "registrations": [ + "N886AJ" + ] + }, + "Hallmark Cards": { + "category": "Business", + "registrations": [ + "N1910H" + ] + }, + "John Staluppi": { + "category": "People", + "registrations": [ + "N17JS" + ] + }, + "Hard Rock": { + "category": "Business", + "registrations": [ + "N126HR", + "N857ST" + ] + }, + "Jeffrey Soffer": { + "category": "People", + "registrations": [ + "N13JS" + ] + }, + "Hershey Foods": { + "category": "Business", + "registrations": [ + "N450MH", + "N604MH" + ] + }, + "Gulfstream C-37A": { + "category": "Government", + "registrations": [ + "https://rzjets.net/aircraft/?parentid=1550&typeid=123&frstatus=1" + ] + }, + "Peter Thiel": { + "category": "People", + "registrations": [ + "N41127" + ] + }, + "Hess Corp": { + "category": "Business", + "registrations": [ + "N1454H" + ] + }, + "Gulfstream C-37B": { + "category": "Government", + "registrations": [ + "https://rzjets.net/aircraft/?typ=74789" + ] + }, + "George William Davies": { + "category": "People", + "registrations": [ + "M-EGWD" + ] + }, + "Hilton Hotels": { + "category": "Business", + "registrations": [ + "N585JC", + "N519BH" + ] + }, + "Gulfstream C-20C": { + "category": "Government", + "registrations": [ + "https://rzjets.net/aircraft/?parentid=1550&typeid=121&frstatus=1" + ] + }, + "Winklevoss Twins (Crypto)": { + "category": "People", + "registrations": [ + "N631CD", + "N631AB" + ] + }, + "Hobby Lobby": { + "category": "Business", + "registrations": [ + "N872HL", + "N472HL", + "N72HL", + "N272HL", + "N2HL", + "N372HL" + ] + }, + "Gulfstream C-20H": { + "category": "Government", + "registrations": [ + "https://rzjets.net/aircraft/?parentid=1550&typeid=122&frstatus=1" + ] + }, + "Jacob Arabo": { + "category": "People", + "registrations": [ + "N190JA" + ] + }, + "Honeywell": { + "category": "Business", + "registrations": [ + "N389H", + "N933H", + "N705ML", + "N161B", + "N966H", + "N999TB", + "N151B", + "N988H", + "N139H" + ] + }, + "Cessna UC-35A/B": { + "category": "Government", + "registrations": [ + "https://rzjets.net/aircraft/?parentid=1550&typeid=67&frstatus=1" + ] + }, + "Donald Trump": { + "category": "People", + "registrations": [ + "N757AF" + ] + }, + "HP": { + "category": "Business", + "registrations": [ + "N2030P", + "N456GA" + ] + }, + "Beoing E4B": { + "category": "Government", + "registrations": [ + "73-1676", + "74-0787", + "73-1677", + "75-0125" + ] + }, + "Chairul Tanjung": { + "category": "People", + "registrations": [ + "VP-CTC" + ] + }, + "Huntsman Jet": { + "category": "Business", + "registrations": [ + "N620JH" + ] + }, + "Bombardier E-11A": { + "category": "Government", + "registrations": [ + "11-9001", + "11-9355", + "12-9506", + "22-9047", + "22-9046", + "21-9045" + ] + }, + "Trevor Milton": { + "category": "People", + "registrations": [ + "N155TM" + ] + }, + "Hy-Vee Grocery": { + "category": "Business", + "registrations": [ + "N78HV", + "N233CL", + "N565HV", + "N564HV" + ] + }, + "E-11A BACN & R1 Sentinel": { + "category": "Government", + "registrations": [ + "11-9001", + "12-9506", + "N691BD", + "11-9335", + "21-9045" + ] + }, + "Ted Waitt": { + "category": "People", + "registrations": [ + "N444WT", + "N163WT" + ] + }, + "Hyundai": { + "category": "Business", + "registrations": [ + "HL8290" + ] + }, + "IAI C-38A Courier": { + "category": "Government", + "registrations": [ + "94-1569" + ] + }, + "Stanley Druckenmiller": { + "category": "People", + "registrations": [ + "N97DQ" + ] + }, + "IBM": { + "category": "Business", + "registrations": [ + "N780RW", + "N790R", + "N780TW", + "N790J" + ] + }, + "Army ARES Bombardier Global": { + "category": "Government", + "registrations": [ + "N799JR" + ] + }, + "Thomas Siebel": { + "category": "People", + "registrations": [ + "N2TS", + "N1TS" + ] + }, + "Intel Air Shuttle (Intel)": { + "category": "Business", + "registrations": [ + "N386AZ", + "N486FM", + "N286SJ", + "N286DP", + "N286CH", + "N286FM" + ] + }, + "C-9B Skytrain II": { + "category": "Government", + "registrations": [ + "161529" + ] + }, + "Josh Altman": { + "category": "People", + "registrations": [ + "N858JL" + ] + }, + "Jacksons Food Stores": { + "category": "Business", + "registrations": [ + "N786WM", + "N428JE", + "N872J", + "N728LM", + "N873PC" + ] + }, + "RC-12X Guardrail": { + "category": "Government", + "registrations": [ + "AE1208", + "AE515E" + ] + }, + "Peter Lim": { + "category": "People", + "registrations": [ + "N757PL" + ] + }, + "JCB Manufacturing": { + "category": "Business", + "registrations": [ + "N200JB", + "M-JCBB" + ] + }, + "COMCO": { + "category": "Government", + "registrations": [ + "N226G", + "N610G" + ] + }, + "Robert F. Smith": { + "category": "People", + "registrations": [ + "N121RS", + "N401VE", + "N283DM" + ] + }, + "JDS Development": { + "category": "Business", + "registrations": [ + "N551GG" + ] + }, + "FEST (Foreign Emergency Support Team)": { + "category": "Government", + "registrations": [ + "025001", + "024452", + "009001" + ] + }, + "David Grain": { + "category": "People", + "registrations": [ + "N413PH" + ] + }, + "John Deere": { + "category": "Business", + "registrations": [ + "N600JD", + "N282JD", + "N550JD" + ] + }, + "RQ-4 Global Hawk": { + "category": "Government", + "registrations": [ + "05-2026", + "05-2025", + "07-2029", + "12-2050", + "05-2023", + "07-2027", + "08-2033", + "05-2022", + "09-2039", + "11-2046" + ] + }, + "David Sacks": { + "category": "People", + "registrations": [ + "N900VL" + ] + }, + "Johnson & Johnson": { + "category": "Business", + "registrations": [ + "N700J", + "N800J", + "N500J", + "N400J", + "N60QJ", + "N600J", + "N30QJ" + ] + }, + "WC-135R Constant Phoenix": { + "category": "Government", + "registrations": [ + "64-14836" + ] + }, + "Tommy Hilfiger": { + "category": "People", + "registrations": [ + "N818TH" + ] + }, + "Johnson Development": { + "category": "Business", + "registrations": [ + "N537GS" + ] + }, + "U.S. Marines C-40A": { + "category": "Government", + "registrations": [ + "17-0041" + ] + }, + "Edward Norton": { + "category": "People", + "registrations": [ + "N206SU" + ] + }, + "Johnsonville Brats": { + "category": "Business", + "registrations": [ + "N600JV" + ] + }, + "CIA Linked": { + "category": "Government", + "registrations": [ + "N3867X", + "N475LC", + "N437YV", + "N389DD", + "N197PA", + "N58AJ", + "N506KM" + ] + }, + "Ed DeBartolo": { + "category": "People", + "registrations": [ + "N100ED" + ] + }, + "JP Morgan": { + "category": "Business", + "registrations": [ + "N661CH", + "N662CH", + "N601CH" + ] + }, + "U.S. Govt. Special Missions": { + "category": "Government", + "registrations": [ + "N280PH" + ] + }, + "Jerry Jones": { + "category": "People", + "registrations": [ + "N992DC", + "N945DC", + "N1DC" + ] + }, + "JRK Property Holdings": { + "category": "Business", + "registrations": [ + "N637GA" + ] + }, + "B-29 Superfortress": { + "category": "Government", + "registrations": [ + "N69972", + "N529B" + ] + }, + "Fred Luddy": { + "category": "People", + "registrations": [ + "N4FL" + ] + }, + "L-3 Communications": { + "category": "Government", + "registrations": [ + "N523NB", + "N208SA", + "N3M", + "N320FC", + "N527GA", + "N552GA", + "N799JR", + "N551HA", + "N5055J", + "N529GA", + "N473AP", + "N281MH", + "N752LT" + ] + }, + "Dan Snyder": { + "category": "People", + "registrations": [ + "M-LDYS", + "M-DANS" + ] + }, + "Khosla Ventures": { + "category": "Business", + "registrations": [ + "N85NV", + "N604SB", + "N109HS" + ] + }, + "L3 Harris Technologies": { + "category": "Government", + "registrations": [ + "N527GA", + "N531GA", + "N530G", + "N529GA" + ] + }, + "Alejandro Roemmers": { + "category": "People", + "registrations": [ + "N313AG" + ] + }, + "Kiewit Engineering Co.": { + "category": "Business", + "registrations": [ + "N352K", + "N356K", + "N359K", + "N353K", + "N357K", + "N342K", + "N354K", + "N341K", + "N355K", + "N347K" + ] + }, + "Tenax Aerospace": { + "category": "Government", + "registrations": [ + "N9191" + ] + }, + "Paul Randy": { + "category": "People", + "registrations": [ + "N650KT" + ] + }, + "Knight-Swift Trucking": { + "category": "Business", + "registrations": [ + "N719KX", + "N390KX" + ] + }, + "ARTEMIS Platform": { + "category": "Government", + "registrations": [ + "N159L", + "N488CR" + ] + }, + "Charles Hoskinson": { + "category": "People", + "registrations": [ + "N1089" + ] + }, + "Koch Industries": { + "category": "Business", + "registrations": [ + "N302K", + "N265K" + ] + }, + "USAF/Big Safari/SierraNevCor": { + "category": "Government", + "registrations": [ + "N356ER", + "N590QP", + "N627GB", + "N986HA", + "N358ER", + "N645HM", + "N997MG", + "N29US" + ] + }, + "Jimmy John Liautaud": { + "category": "People", + "registrations": [ + "N15UB", + "N83JJ" + ] + }, + "Kohler Co.": { + "category": "Business", + "registrations": [ + "N797KK", + "N777KK", + "N101KK", + "N111KK" + ] + }, + "Ukraine War Survalliance Plane": { + "category": "Government", + "registrations": [ + "N488CR" + ] + }, + "Chase Coleman": { + "category": "People", + "registrations": [ + "N88C" + ] + }, + "Kroger": { + "category": "Business", + "registrations": [ + "N300KC", + "N50KR", + "N48KR", + "N304KC", + "N302KC", + "N49KR" + ] + }, + "Lockheed Gulfstream": { + "category": "Government", + "registrations": [ + "N30LX" + ] + }, + "Andy Albright": { + "category": "People", + "registrations": [ + "N247RU" + ] + }, + "Las Vegas Sands": { + "category": "Business", + "registrations": [ + "N804MS", + "N336LS", + "N885LS", + "N889LS", + "VP-BMH", + "N108MS", + "N623MS", + "VP-BMS", + "N500LS", + "VP-BLK", + "N383LS", + "N887LS", + "N883LS" + ] + }, + "Top Aces F16's": { + "category": "Government", + "registrations": [ + "N856TA", + "N858TA", + "N860TA", + "N865TA" + ] + }, + "Dmitry Balyasny": { + "category": "People", + "registrations": [ + "N193LS" + ] + }, + "Leisure Pools": { + "category": "Business", + "registrations": [ + "N9PF" + ] + }, + "AVdef": { + "category": "Government", + "registrations": [ + "F-GPAD" + ] + }, + "John Ruiz": { + "category": "People", + "registrations": [ + "N948PH", + "N830NR", + "N584ER", + "N267JR", + "N267RF" + ] + }, + "LG Electronics": { + "category": "Business", + "registrations": [ + "HL8299" + ] + }, + "Northrup Grumman": { + "category": "Government", + "registrations": [ + "N77NG", + "N37WH", + "N82CR", + "N72NG", + "N23NG", + "N804X" + ] + }, + "Mark Juncosa (SpaceX VP)": { + "category": "People", + "registrations": [ + "N16DF" + ] + }, + "Liberty Mutual Insurance": { + "category": "Business", + "registrations": [ + "N824SS", + "N801PR", + "N45JE", + "N270LE" + ] + }, + "Air Force Materiel Command-GRUMMAN": { + "category": "Government", + "registrations": [ + "N105TB" + ] + }, + "Jan Koum": { + "category": "People", + "registrations": [ + "N143", + "N518KA" + ] + }, + "Lockheed Martin": { + "category": "Business", + "registrations": [ + "N960DT", + "N344RS", + "N650VC", + "N359GS", + "N347NA" + ] + }, + "Military HALO Gulfstreams": { + "category": "Government", + "registrations": [ + "N551HA", + "N74A", + "N178B", + "N552HA", + "N779LC", + "N553HA" + ] + }, + "Taylor Gerring": { + "category": "People", + "registrations": [ + "N711PV" + ] + }, + "Lowes": { + "category": "Business", + "registrations": [ + "N307PD", + "N133RL", + "N33LC", + "N44LC", + "N55LC" + ] + }, + "Government 707": { + "category": "Government", + "registrations": [ + "77-0351", + "02-9111", + "76-1607", + "81-0894", + "71-1407" + ] + }, + "Chris Sacca": { + "category": "People", + "registrations": [ + "N117AL" + ] + }, + "Maersk Shipping Company": { + "category": "Business", + "registrations": [ + "OY-APM" + ] + }, + "MIT Lincoln Lab": { + "category": "Government", + "registrations": [ + "N108EW", + "N108RT", + "N331CL", + "N821AR", + "N359AR" + ] + }, + "John Doerr": { + "category": "People", + "registrations": [ + "N246BD" + ] + }, + "Mandalay Vegas Resorts": { + "category": "Business", + "registrations": [ + "N781MM", + "N783MM", + "N785MM", + "N721MM", + "N782MM" + ] + }, + "Marriott Hotels": { + "category": "Business", + "registrations": [ + "N57MH", + "N522MH" + ] + }, + "Larry Page": { + "category": "People", + "registrations": [ + "N813QS" + ] + }, + "Mary Kay Inc.": { + "category": "Business", + "registrations": [ + "N650NR" + ] + }, + "Jerry Yang": { + "category": "People", + "registrations": [ + "N999YY" + ] + }, + "McDonalds": { + "category": "Business", + "registrations": [ + "N1967M", + "N1969M", + "N1955M" + ] + }, + "Robert Pera": { + "category": "People", + "registrations": [ + "N4096Q" + ] + }, + "McNeil Consumer Healthcare (Tylenol)": { + "category": "Business", + "registrations": [ + "N772HM", + "N771HM" + ] + }, + "Roleof Botha": { + "category": "People", + "registrations": [ + "N39871" + ] + }, + "Plumb Bill Pay": { + "category": "Business", + "registrations": [ + "N3TS" + ] + }, + "Phillip Sarofim": { + "category": "People", + "registrations": [ + "N1111P" + ] + }, + "Meijer Stores": { + "category": "Business", + "registrations": [ + "N1219M", + "N519LM", + "N1907M" + ] + }, + "Joe Tsai": { + "category": "People", + "registrations": [ + "VP-COR" + ] + }, + "Menards": { + "category": "Business", + "registrations": [ + "N515CX", + "N586M", + "N549M", + "N538M", + "N563M", + "N540M" + ] + }, + "Learjet C-21A": { + "category": "Government", + "registrations": [ + "84-0124", + "84-0087", + "84-0120", + "84-0125", + "84-0129", + "84-0071", + "86-0374", + "84-0135", + "84-0075", + "84-0096", + "84-0137", + "84-0083", + "86-0377", + "84-0126", + "84-0085", + "84-0142", + "84-0079", + "84-0072" + ] + }, + "Amnon Shashua": { + "category": "People", + "registrations": [ + "M-MBLY" + ] + }, + "Merck": { + "category": "Business", + "registrations": [ + "N811MK", + "N822MK", + "N462MK" + ] + }, + "Eytan Stibbe": { + "category": "People", + "registrations": [ + "M-ANGO" + ] + }, + "Micron": { + "category": "Business", + "registrations": [ + "N858CG" + ] + }, + "Woody Johnson": { + "category": "People", + "registrations": [ + "N108PB" + ] + }, + "Miliken": { + "category": "Business", + "registrations": [ + "N854MC" + ] + }, + "Boeing C-40A/B Clipper": { + "category": "Government", + "registrations": [ + "01-0040", + "16-5833", + "16-5830", + "16-5832", + "16-5835", + "02-0203", + "09-0540", + "01-0015", + "02-0201", + "16-8981", + "16-5836", + "16-6693", + "16-5829", + "02-0202", + "16-9793", + "16-6695", + "17-0041", + "16-6696", + "05-0932", + "65-834", + "02-0042", + "16-9792", + "05-0730", + "16-6694", + "16-9036", + "16-8980", + "01-0041", + "17-0042", + "05-4613", + "16-5831", + "99-1025" + ] + }, + "Mark Burnett": { + "category": "People", + "registrations": [ + "N139MB" + ] + }, + "Morgan and Morgan Law Firm": { + "category": "Business", + "registrations": [ + "N946MM" + ] + }, + "Andr\u00e9 Esteves": { + "category": "People", + "registrations": [ + "PS-BTG" + ] + }, + "Morgan Stanley": { + "category": "Business", + "registrations": [ + "N669GD" + ] + }, + "Nick Marietta": { + "category": "People", + "registrations": [ + "N188FJ" + ] + }, + "Nanoworks": { + "category": "Business", + "registrations": [ + "N278L" + ] + }, + "Boeing E-3G Sentry": { + "category": "Government", + "registrations": [ + "79-0003", + "78-0577", + "75-0558", + "75-0560", + "77-0355", + "78-0576", + "75-0556", + "83-0009", + "75-0559", + "76-1604", + "80-0139", + "71-1408", + "78-0578", + "80-0138", + "76-1607", + "75-0557", + "77-0351", + "77-0356", + "79-0002", + "76-1605", + "77-0353", + "73-1675", + "79-0001", + "82-0007", + "82-0006", + "77-0352", + "80-0137", + "81-0004", + "76-1606", + "71-1407", + "81-0005" + ] + }, + "Nestle USA": { + "category": "Business", + "registrations": [ + "N608RP", + "N1TT" + ] + }, + "Jared Kushner": { + "category": "People", + "registrations": [ + "N1826K" + ] + }, + "Netflix": { + "category": "Business", + "registrations": [ + "N535GV", + "N512GV", + "N533GV" + ] + }, + "Charles Simonyi": { + "category": "People", + "registrations": [ + "N822LC", + "N1601H" + ] + }, + "Niagara Water Bottling": { + "category": "Business", + "registrations": [ + "N63NB" + ] + }, + "FAA": { + "category": "Government", + "registrations": [ + "N87", + "N2", + "N16", + "N1", + "N73", + "N47", + "N75", + "N80", + "N59", + "N86", + "N90", + "N67", + "N15", + "N17", + "N14", + "N68", + "N56", + "N11", + "N70", + "N88", + "N84", + "N55", + "N57", + "N66", + "N71", + "N35", + "N12", + "N85", + "N72", + "N89", + "N69", + "N54", + "N83", + "N79", + "N13", + "N76", + "N77", + "N81", + "N58", + "N78" + ] + }, + "Jon A Shirley": { + "category": "People", + "registrations": [ + "N74JK" + ] + }, + "Nike": { + "category": "Business", + "registrations": [ + "N6453", + "N1KE", + "N694GS", + "N19HT" + ] + }, + "Kevin Harvey": { + "category": "People", + "registrations": [ + "N661GT" + ] + }, + "Norfolk Southern Railroad": { + "category": "Business", + "registrations": [ + "N159NS", + "N157NS", + "N158NS" + ] + }, + "Jeffrey Vinik": { + "category": "People", + "registrations": [ + "N167TV" + ] + }, + "Oaktree Capital": { + "category": "Business", + "registrations": [ + "N950CM" + ] + }, + "B-52": { + "category": "Government", + "registrations": [ + "60-0022", + "60-0035", + "61-0004", + "61-0034", + "61-0012", + "61-0032", + "61-0003", + "60-0034", + "61-0036", + "61-0005", + "60-0001", + "60-0021", + "60-0062", + "61-0040", + "60-0061", + "60-0032", + "61-0007", + "61-0028", + "60-0050", + "61-0015", + "60-0051", + "60-0055", + "60-0031", + "60-0015", + "60-0023", + "60-0008", + "60-0059", + "60-0004", + "60-0028", + "61-0014", + "60-0045", + "60-0060", + "60-0024", + "60-0037", + "60-0042", + "60-0017", + "61-0016", + "60-0018", + "61-0029", + "61-0031", + "60-0007", + "61-0018", + "60-0056", + "61-0006", + "61-0013", + "60-0054", + "60-0003", + "61-0002", + "60-0026", + "61-0038", + "61-0010", + "60-0041", + "60-0044", + "60-0058", + "60-0009", + "60-0005", + "60-0025", + "60-0038", + "61-0020", + "60-0002", + "61-0017", + "61-0035", + "60-0036", + "60-0012", + "61-0019", + "61-0008", + "60-0029", + "60-0011", + "61-0021", + "60-0057", + "61-0039", + "61-0011", + "61-0001", + "60-0033", + "60-0048", + "60-0052", + "60-0013" + ] + }, + "Greg Wyler (OneWeb)": { + "category": "People", + "registrations": [ + "N11GW" + ] + }, + "Oracle": { + "category": "Business", + "registrations": [ + "N15GX", + "N703DS" + ] + }, + "B-1B": { + "category": "Government", + "registrations": [ + "86-0107", + "86-0102", + "86-0127" + ] + }, + "Meet Kevin (YouTuber)": { + "category": "People", + "registrations": [ + "N88W", + "N964PP" + ] + }, + "OtterBox": { + "category": "Business", + "registrations": [ + "N183BX" + ] + }, + "Gwyenn Shotwell (SpaceX)": { + "category": "People", + "registrations": [ + "N450GG" + ] + }, + "PACCAR": { + "category": "Business", + "registrations": [ + "N706P", + "N701P", + "N710P" + ] + }, + "Antonio Gracias (Valor Equity Partners)": { + "category": "People", + "registrations": [ + "N95VE" + ] + }, + "Palantir": { + "category": "Business", + "registrations": [ + "N814PS" + ] + }, + "David Katzman (SmileDirect)": { + "category": "People", + "registrations": [ + "N424PX" + ] + }, + "Panda Express": { + "category": "Business", + "registrations": [ + "N168PX" + ] + }, + "Wes Edens": { + "category": "People", + "registrations": [ + "N888ZF" + ] + }, + "Pap\u00e9 Machinery": { + "category": "Business", + "registrations": [ + "N101PG", + "N102PG" + ] + }, + "Remon Voss": { + "category": "People", + "registrations": [ + "OK-VOS" + ] + }, + "Paramount Pictures": { + "category": "Business", + "registrations": [ + "N75VB" + ] + }, + "Joseph Edelman": { + "category": "People", + "registrations": [ + "N416EL" + ] + }, + "Pasaca Capital": { + "category": "Business", + "registrations": [ + "N889CH", + "N889CL" + ] + }, + "Glennon Crowell Jr.": { + "category": "People", + "registrations": [ + "N999GC" + ] + }, + "Patek Philippe SA": { + "category": "Business", + "registrations": [ + "HB-JFP" + ] + }, + "Pritzker Family": { + "category": "People", + "registrations": [ + "N583GD", + "N582GD", + "N962GA" + ] + }, + "PayPal": { + "category": "Business", + "registrations": [ + "N4050" + ] + }, + "Aliko Dangote": { + "category": "People", + "registrations": [ + "N605DA" + ] + }, + "Penn National Gaming": { + "category": "Business", + "registrations": [ + "N10J", + "N910J" + ] + }, + "John Schnatter (Papa Johns)": { + "category": "People", + "registrations": [ + "N84PJ", + "N83ML" + ] + }, + "Pepsi": { + "category": "Business", + "registrations": [ + "N500PC", + "N508PC", + "N502PC", + "N501PC", + "N503PC" + ] + }, + "Stephanie Shojaee (Shoma Real Estate)": { + "category": "People", + "registrations": [ + "N85D" + ] + }, + "Perenco": { + "category": "Business", + "registrations": [ + "M-WAFA" + ] + }, + "Nelson Peltz": { + "category": "People", + "registrations": [ + "N115TR" + ] + }, + "Peterson Companies": { + "category": "Business", + "registrations": [ + "N273A" + ] + }, + "Jerry Savelle (televangelist )": { + "category": "People", + "registrations": [ + "N920JS" + ] + }, + "Pfizer": { + "category": "Business", + "registrations": [ + "N6CP", + "N3CP", + "N4CP", + "N5CP" + ] + }, + "Michael Niederst (Real estate)": { + "category": "People", + "registrations": [ + "N650MN" + ] + }, + "Prada": { + "category": "Business", + "registrations": [ + "I-XPRA" + ] + }, + "Eric Lefkofsky (Groupon)": { + "category": "People", + "registrations": [ + "N148L" + ] + }, + "Precision Castparts": { + "category": "Business", + "registrations": [ + "N756HA", + "N756PC", + "N673HA", + "N599HA" + ] + }, + "Brad Keywell (Groupon and Uptake Tech)": { + "category": "People", + "registrations": [ + "N148JL" + ] + }, + "Prime Inc.": { + "category": "Business", + "registrations": [ + "N650VL" + ] + }, + "James Williamson": { + "category": "People", + "registrations": [ + "N939CC" + ] + }, + "Principal Financial": { + "category": "Business", + "registrations": [ + "N79PG", + "N179PF" + ] + }, + "Michael Saylor (MicroStrategy)": { + "category": "People", + "registrations": [ + "N3877" + ] + }, + "Proctor & Gamble": { + "category": "Business", + "registrations": [ + "N2PG", + "N5PG", + "N7PG", + "N1PG", + "N6PG" + ] + }, + "Michael Milken": { + "category": "People", + "registrations": [ + "N704MF" + ] + }, + "Prudential Insurance": { + "category": "Business", + "registrations": [ + "N1875A", + "N82A" + ] + }, + "Patrick Dovigi": { + "category": "People", + "registrations": [ + "C-GFLU", + "C-GPJD" + ] + }, + "Publix Supermarkets": { + "category": "Business", + "registrations": [ + "N89PX", + "N30GJ", + "N929GW" + ] + }, + "John A. Sobrato": { + "category": "People", + "registrations": [ + "N539JS" + ] + }, + "Puma": { + "category": "Business", + "registrations": [ + "N1948Z" + ] + }, + "Ty Warner": { + "category": "People", + "registrations": [ + "N888TY" + ] + }, + "Purina Petcare": { + "category": "Business", + "registrations": [ + "N607RP", + "N50NP" + ] + }, + "Louis Bacon": { + "category": "People", + "registrations": [ + "N725LB", + "N508LB" + ] + }, + "Qualcomm": { + "category": "Business", + "registrations": [ + "N880WT", + "N886WT", + "N887WT", + "N692GD" + ] + }, + "Laurence Escalante (theleecollection)": { + "category": "People", + "registrations": [ + "VH-LON" + ] + }, + "Quest Diagnostics (BE58)": { + "category": "Business", + "registrations": [ + "N2143J", + "N1065B", + "N910SA", + "N14JH", + "N36TA", + "N3267N" + ] + }, + "Mohamed El Enein": { + "category": "People", + "registrations": [ + "N700ME" + ] + }, + "Quest Diagnostics (Other)": { + "category": "Business", + "registrations": [ + "N288DX", + "N197DX", + "N648DX", + "N899DX" + ] + }, + "Kris Krohn": { + "category": "People", + "registrations": [ + "N188FJ" + ] + }, + "Quest Diagnostics (PC12)": { + "category": "Business", + "registrations": [ + "N589QD", + "N26VW", + "N687QD", + "N120QD", + "N399SA", + "N432CV", + "N942TW", + "N567QD", + "N338QD", + "N465PC", + "N149QD" + ] + }, + "Danny Jenkins": { + "category": "People", + "registrations": [ + "N2425J" + ] + }, + "Raytheon": { + "category": "Business", + "registrations": [ + "N48RT", + "N46RT", + "N89RT", + "N67RT", + "N601RC" + ] + }, + "Erik Prince": { + "category": "People", + "registrations": [ + "N131EP" + ] + }, + "RealPage Real Estate": { + "category": "Business", + "registrations": [ + "N63RP" + ] + }, + "Alan Waxman Sixth Street Partners": { + "category": "People", + "registrations": [ + "N5456W" + ] + }, + "Related Companies (Stephen Ross)": { + "category": "Business", + "registrations": [ + "N510SR", + "N155TM", + "N551RC" + ] + }, + "Pierre Omidyar": { + "category": "People", + "registrations": [ + "N171EX" + ] + }, + "Resturant Brands Intl.": { + "category": "Business", + "registrations": [ + "N551SW" + ] + }, + "Richard T. Santulli": { + "category": "People", + "registrations": [ + "N307PS" + ] + }, + "Rocket Lab Helicopters": { + "category": "Business", + "registrations": [ + "ZK-HEV", + "ZK-HKQ", + "ZK-IXW" + ] + }, + "Vick Tipnes": { + "category": "People", + "registrations": [ + "N921MG" + ] + }, + "Tom and Steuart Walton": { + "category": "People", + "registrations": [ + "N128SK", + "N479W" + ] + }, + "Rooms to Go": { + "category": "Business", + "registrations": [ + "N660DX" + ] + }, + "Cohen Brothers": { + "category": "People", + "registrations": [ + "N979CB" + ] + }, + "RTW Investments": { + "category": "Business", + "registrations": [ + "N512GL" + ] + }, + "Ronald Perelman": { + "category": "People", + "registrations": [ + "N838MF" + ] + }, + "RyanAir Support Aircraft": { + "category": "Business", + "registrations": [ + "M-ABGV", + "M-ABTE", + "M-ABJA", + "M-ABRB", + "M-ABEU", + "M-ABSU" + ] + }, + "Tom Werner": { + "category": "People", + "registrations": [ + "N672WM" + ] + }, + "S C Johnson": { + "category": "Business", + "registrations": [ + "N989JW", + "N979JW" + ] + }, + "Jon Gray": { + "category": "People", + "registrations": [ + "N898MJ" + ] + }, + "Samsung": { + "category": "Business", + "registrations": [ + "HL9610", + "HL9609", + "HL8508" + ] + }, + "Robert Herjavec": { + "category": "People", + "registrations": [ + "N616RH" + ] + }, + "ScottsMiracle-Gro": { + "category": "Business", + "registrations": [ + "N50MG", + "N520MG", + "N12MG" + ] + }, + "Jeff Swickard": { + "category": "People", + "registrations": [ + "N609JS", + "N440C" + ] + }, + "Shell Oil": { + "category": "Business", + "registrations": [ + "VQ-BXF", + "VQ-BXD", + "VQ-BXG", + "VQ-BXH" + ] + }, + "Haim Saban": { + "category": "People", + "registrations": [ + "N451CS" + ] + }, + "Sierra Pacific Industries": { + "category": "Business", + "registrations": [ + "N979TM", + "N473HB", + "N505GD", + "N289PC" + ] + }, + "Steven Rattner": { + "category": "People", + "registrations": [ + "N12MW" + ] + }, + "Simon Property Group (Malls)": { + "category": "Business", + "registrations": [ + "N244DS" + ] + }, + "David Ellison": { + "category": "People", + "registrations": [ + "N651DE" + ] + }, + "Snapchat/Evan Spiegel": { + "category": "Business", + "registrations": [ + "N14KL", + "N3E" + ] + }, + "Alberto Rodr\u00edguez Baldi (Baldi Hot Springs Hotel)": { + "category": "People", + "registrations": [ + "N908BH" + ] + }, + "South Park Media": { + "category": "Business", + "registrations": [ + "N646Y" + ] + }, + "James Dyson": { + "category": "People", + "registrations": [ + "G-DWGI", + "G-GVII", + "G-DVIO", + "G-VIOF", + "G-ULFD", + "G-DVII" + ] + }, + "SpaceX": { + "category": "Business", + "registrations": [ + "N272BG", + "N154TS" + ] + }, + "Aiyawatt Srivaddhanaprabha": { + "category": "People", + "registrations": [ + "M-LCFC", + "HS-VSK", + "HS-KVS" + ] + }, + "Standard Industries": { + "category": "Business", + "registrations": [ + "N1886N", + "N40WR", + "N40NS", + "N1886G" + ] + }, + "Jay Penske": { + "category": "People", + "registrations": [ + "N7JP" + ] + } + } +} \ No newline at end of file diff --git a/backend/debug_fast.json.REMOVED.git-id b/backend/debug_fast.json.REMOVED.git-id new file mode 100644 index 0000000..d7f6dfe --- /dev/null +++ b/backend/debug_fast.json.REMOVED.git-id @@ -0,0 +1 @@ +5c3b1c768973ca54e9a1befee8dc075f38e8cc56 \ No newline at end of file diff --git a/backend/dump.json.REMOVED.git-id b/backend/dump.json.REMOVED.git-id new file mode 100644 index 0000000..2874b8a --- /dev/null +++ b/backend/dump.json.REMOVED.git-id @@ -0,0 +1 @@ +2b64633521ffb6f06da36e19f5c8eb86979e2187 \ No newline at end of file diff --git a/backend/extract_ovens.py b/backend/extract_ovens.py new file mode 100644 index 0000000..dd6ca8b --- /dev/null +++ b/backend/extract_ovens.py @@ -0,0 +1,25 @@ +import re +import json + +try: + with open('liveua_test.html', 'r', encoding='utf-8') as f: + html = f.read() + + m = re.search(r"var\s+ovens\s*=\s*(.*?);(?!function)", html, re.DOTALL) + if m: + json_str = m.group(1) + # Handle if it is a string containing base64 + if json_str.startswith("'") or json_str.startswith('"'): + json_str = json_str.strip('"\'') + import base64 + import urllib.parse + json_str = base64.b64decode(urllib.parse.unquote(json_str)).decode('utf-8') + + data = json.loads(json_str) + with open('out_liveua.json', 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2) + print(f"Successfully extracted {len(data)} ovens items.") + else: + print("var ovens not found.") +except Exception as e: + print("Error:", e) diff --git a/backend/liveua_test.html b/backend/liveua_test.html new file mode 100644 index 0000000..85e30b4 --- /dev/null +++ b/backend/liveua_test.html @@ -0,0 +1,99 @@ + +Cannot GET /api/history/public/latest+ + diff --git a/backend/test_adsb.py b/backend/test_adsb.py new file mode 100644 index 0000000..c41cffc --- /dev/null +++ b/backend/test_adsb.py @@ -0,0 +1,59 @@ +import requests +import time +import math +import random + +def test_fetch_and_triangulate(): + t0 = time.time() + url = "https://api.adsb.lol/v2/lat/39.8/lon/-98.5/dist/1000" + try: + r = requests.get(url, timeout=10) + data = r.json() + print(f"Downloaded in {time.time() - t0:.2f}s") + if "ac" in data: + sampled = data["ac"] + print("Flights:", len(sampled)) + else: + print("No 'ac' in response:", data) + + + # Load airports (mock for test) + airports = [{"lat": random.uniform(-90, 90), "lng": random.uniform(-180, 180), "iata": f"A{i}"} for i in range(4000)] + + t1 = time.time() + for f in sampled: + lat = f.get("lat") + lng = f.get("lon") + heading = f.get("track", 0) + if lat is None or lng is None: continue + + # Project 15 degrees (~1000 miles) backwards and forwards + dist_deg = 15.0 + h_rad = math.radians(heading) + dy = math.cos(h_rad) * dist_deg + dx = math.sin(h_rad) * dist_deg + cos_lat = max(0.2, math.cos(math.radians(lat))) + + origin_lat = lat - dy + origin_lng = lng - (dx / cos_lat) + + dest_lat = lat + dy + dest_lng = lng + (dx / cos_lat) + + # Find closest origin airport + best_o, min_o = None, float('inf') + for a in airports: + d = (a['lat'] - origin_lat)**2 + (a['lng'] - origin_lng)**2 + if d < min_o: min_o = d; best_o = a + + # Find closest dest airport + best_d, min_d = None, float('inf') + for a in airports: + d = (a['lat'] - dest_lat)**2 + (a['lng'] - dest_lng)**2 + if d < min_d: min_d = d; best_d = a + + print(f"Triangulated 500 flights against {len(airports)} airports in {time.time() - t1:.2f}s") + except Exception as e: + print("Error:", e) + +test_fetch_and_triangulate() diff --git a/backend/test_adsb_inner.py b/backend/test_adsb_inner.py new file mode 100644 index 0000000..882196d --- /dev/null +++ b/backend/test_adsb_inner.py @@ -0,0 +1,13 @@ +from services.data_fetcher import fetch_airports, fetch_flights, cached_airports, latest_data + +fetch_airports() + +# We patch logger to see what happens inside fetch_flights +import logging +logging.basicConfig(level=logging.DEBUG) + +# let's run fetch_flights +fetch_flights() + +flights = latest_data.get('flights', []) +print(f"Total flights: {len(flights)}") diff --git a/backend/test_ais_proxy.py b/backend/test_ais_proxy.py new file mode 100644 index 0000000..23b7bd3 --- /dev/null +++ b/backend/test_ais_proxy.py @@ -0,0 +1,45 @@ +import json +import subprocess +import os +import time + +proxy_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), "ais_proxy.js") +API_KEY = "75cc39af03c9cc23c90e8a7b3c3bc2b2a507c5fb" + +print(f"Proxy script: {proxy_script}") +print(f"Exists: {os.path.exists(proxy_script)}") + +process = subprocess.Popen( + ['node', proxy_script, API_KEY], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, # Separate stderr! + text=True, + bufsize=1 +) + +print("Process started, reading stdout...") +count = 0 +start = time.time() +for line in iter(process.stdout.readline, ''): + line = line.strip() + if not line: + continue + try: + data = json.loads(line) + msg_type = data.get("MessageType", "?") + mmsi = data.get("MetaData", {}).get("MMSI", 0) + count += 1 + if count <= 5: + print(f" MSG {count}: type={msg_type} mmsi={mmsi}") + if count == 20: + elapsed = time.time() - start + print(f"\nReceived {count} messages in {elapsed:.1f}s — proxy is working!") + process.terminate() + break + except json.JSONDecodeError as e: + print(f" BAD JSON: {line[:100]}... err={e}") + +if count == 0: + # Check stderr + stderr_out = process.stderr.read() + print(f"Zero messages received. stderr: {stderr_out[:500]}") diff --git a/backend/test_ais_proxy2.py b/backend/test_ais_proxy2.py new file mode 100644 index 0000000..e200f09 --- /dev/null +++ b/backend/test_ais_proxy2.py @@ -0,0 +1,54 @@ +import json +import subprocess +import os +import time +import sys + +proxy_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), "ais_proxy.js") +API_KEY = "75cc39af03c9cc23c90e8a7b3c3bc2b2a507c5fb" + +print(f"Proxy script: {proxy_script}") + +process = subprocess.Popen( + ['node', proxy_script, API_KEY], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + text=True, + bufsize=1 +) + +import threading + +def read_stderr(): + for line in iter(process.stderr.readline, ''): + print(f"[STDERR] {line.strip()}", file=sys.stderr) + +t = threading.Thread(target=read_stderr, daemon=True) +t.start() + +print("Process started, reading stdout for 15 seconds...") +count = 0 +start = time.time() +while time.time() - start < 15: + line = process.stdout.readline() + if not line: + if process.poll() is not None: + print(f"Process exited with code {process.returncode}") + break + continue + line = line.strip() + if not line: + continue + try: + data = json.loads(line) + msg_type = data.get("MessageType", "?") + mmsi = data.get("MetaData", {}).get("MMSI", 0) + count += 1 + if count <= 5: + print(f" MSG {count}: type={msg_type} mmsi={mmsi}") + except json.JSONDecodeError as e: + print(f" BAD LINE: {line[:80]}...") + +elapsed = time.time() - start +print(f"\nTotal {count} messages in {elapsed:.1f}s") +process.terminate() diff --git a/backend/test_api.py b/backend/test_api.py new file mode 100644 index 0000000..82f87f9 --- /dev/null +++ b/backend/test_api.py @@ -0,0 +1,13 @@ +import requests +import traceback + +try: + print("Testing adsb.lol...") + r = requests.get("https://api.adsb.lol/v2/lat/39.8/lon/-98.5/dist/100", timeout=15) + print(f"Status: {r.status_code}") + d = r.json() + print(f"Aircraft: {len(d.get('ac', []))}") +except Exception as e: + print(f"Error type: {type(e).__name__}") + print(f"Error: {e}") + traceback.print_exc() diff --git a/backend/test_api_stats.py b/backend/test_api_stats.py new file mode 100644 index 0000000..c8a3e77 --- /dev/null +++ b/backend/test_api_stats.py @@ -0,0 +1,11 @@ +import json +import urllib.request +import time + +time.sleep(5) +try: + data = urllib.request.urlopen('http://localhost:8000/api/live-data').read() + d = json.loads(data) + print(f"News: {len(d.get('news', []))} | Earthquakes: {len(d.get('earthquakes', []))} | Satellites: {len(d.get('satellites', []))} | CCTV: {len(d.get('cctv', []))}") +except Exception as e: + print(f"Error fetching API: {e}") diff --git a/backend/test_batch.py b/backend/test_batch.py new file mode 100644 index 0000000..3308e00 --- /dev/null +++ b/backend/test_batch.py @@ -0,0 +1,56 @@ +import requests +import json + +# Step 1: Fetch some real flights from adsb.lol +print("Fetching real flights from adsb.lol...") +r = requests.get("https://api.adsb.lol/v2/lat/39.8/lon/-98.5/dist/250", timeout=10) +data = r.json() +ac = data.get("ac", []) +print("Got", len(ac), "aircraft") + +# Step 2: Build a batch of real callsigns +planes = [] +for f in ac[:20]: # Just 20 real flights + cs = str(f.get("flight", "")).strip() + lat = f.get("lat") + lon = f.get("lon") + if cs and lat and lon: + planes.append({"callsign": cs, "lat": lat, "lng": lon}) + +print("Built batch of", len(planes), "planes") +print("Sample plane:", json.dumps(planes[0]) if planes else "NONE") + +# Step 3: Test routeset with real data +if planes: + payload = {"planes": planes} + print("Payload size:", len(json.dumps(payload)), "bytes") + r2 = requests.post("https://api.adsb.lol/api/0/routeset", json=payload, timeout=15) + print("Routeset HTTP:", r2.status_code) + if r2.status_code == 200: + result = r2.json() + print("Response type:", type(result).__name__) + print("Routes found:", len(result) if isinstance(result, list) else "dict") + if isinstance(result, list) and len(result) > 0: + print("First route:", json.dumps(result[0], indent=2)) + else: + print("Error body:", r2.text[:500]) + +# Step 4: Test with bigger batch +print("\n--- Testing with 100 real flights ---") +planes100 = [] +for f in ac[:120]: + cs = str(f.get("flight", "")).strip() + lat = f.get("lat") + lon = f.get("lon") + if cs and lat and lon: + planes100.append({"callsign": cs, "lat": lat, "lng": lon}) +planes100 = planes100[:100] + +print("Built batch of", len(planes100), "planes") +r3 = requests.post("https://api.adsb.lol/api/0/routeset", json={"planes": planes100}, timeout=15) +print("Routeset HTTP:", r3.status_code) +if r3.status_code == 200: + result3 = r3.json() + print("Routes found:", len(result3) if isinstance(result3, list) else "dict") +else: + print("Error body:", r3.text[:500]) diff --git a/backend/test_cctv.py b/backend/test_cctv.py new file mode 100644 index 0000000..87f9b92 --- /dev/null +++ b/backend/test_cctv.py @@ -0,0 +1,10 @@ +from services.cctv_pipeline import init_db, TFLJamCamIngestor, LTASingaporeIngestor + +init_db() +print("Initialized DB") + +tfl = TFLJamCamIngestor() +print(f"TFL Cameras: {len(tfl.fetch_data())}") + +nyc = LTASingaporeIngestor() +print(f"SGP Cameras: {len(nyc.fetch_data())}") diff --git a/backend/test_cctv_endpoints.py b/backend/test_cctv_endpoints.py new file mode 100644 index 0000000..2749617 --- /dev/null +++ b/backend/test_cctv_endpoints.py @@ -0,0 +1,24 @@ +import requests + +try: + print('Testing Seattle SDOT...') + r_sea = requests.get('https://data.seattle.gov/resource/65fc-btcc.json?$limit=5', headers={'X-App-Token': 'f2jdDBw5JMXPFOQyk64SKlPkn'}) + print(r_sea.status_code) + try: + print(r_sea.json()[0]) + except: + pass +except: + pass + +try: + print('Testing NYC 511...') + r_nyc = requests.get('https://webcams.nyctmc.org/api/cameras', timeout=5) + print(r_nyc.status_code) + try: + print(len(r_nyc.json())) + print(r_nyc.json()[0]) + except: + pass +except: + pass diff --git a/backend/test_counts.py b/backend/test_counts.py new file mode 100644 index 0000000..feb4841 --- /dev/null +++ b/backend/test_counts.py @@ -0,0 +1,10 @@ +import json, urllib.request + +data = json.loads(urllib.request.urlopen('http://localhost:8000/api/live-data').read()) +print(f"Commercial flights: {len(data.get('commercial_flights', []))}") +print(f"Private flights: {len(data.get('private_flights', []))}") +print(f"Private jets: {len(data.get('private_jets', []))}") +print(f"Military flights: {len(data.get('military_flights', []))}") +print(f"Tracked flights: {len(data.get('tracked_flights', []))}") +print(f"Ships: {len(data.get('ships', []))}") +print(f"CCTV: {len(data.get('cctv', []))}") diff --git a/backend/test_debug_api.py b/backend/test_debug_api.py new file mode 100644 index 0000000..ecc17c1 --- /dev/null +++ b/backend/test_debug_api.py @@ -0,0 +1,38 @@ +import json +import urllib.request + +try: + data = json.loads(urllib.request.urlopen('http://localhost:8000/api/live-data').read()) + + # Tracked flights + tracked = data.get('tracked_flights', []) + print(f"=== TRACKED FLIGHTS: {len(tracked)} ===") + if tracked: + colors = {} + for t in tracked: + c = t.get('alert_color', 'NONE') + colors[c] = colors.get(c, 0) + 1 + print(f" Colors: {colors}") + print(f" Sample: {json.dumps(tracked[0], indent=2)[:500]}") + + # Ships + ships = data.get('ships', []) + print(f"\n=== SHIPS: {len(ships)} ===") + types = {} + for s in ships: + t = s.get('type', 'unknown') + types[t] = types.get(t, 0) + 1 + print(f" Types: {types}") + if ships: + print(f" Sample: {json.dumps(ships[0], indent=2)[:300]}") + + # News + news = data.get('news', []) + print(f"\n=== NEWS: {len(news)} ===") + + # Earthquakes + quakes = data.get('earthquakes', []) + print(f"=== EARTHQUAKES: {len(quakes)} ===") + +except Exception as e: + print(f"Error: {e}") diff --git a/backend/test_final.py b/backend/test_final.py new file mode 100644 index 0000000..1c9b7b6 --- /dev/null +++ b/backend/test_final.py @@ -0,0 +1,23 @@ +import json +import urllib.request + +try: + data = json.loads(urllib.request.urlopen('http://localhost:8000/api/live-data').read()) + + tracked = data.get('tracked_flights', []) + colors = {} + for t in tracked: + c = t.get('alert_color', 'NONE') + colors[c] = colors.get(c, 0) + 1 + print(f"TRACKED FLIGHTS: {len(tracked)} | Colors: {colors}") + + ships = data.get('ships', []) + types = {} + for s in ships: + t = s.get('type', 'unknown') + types[t] = types.get(t, 0) + 1 + print(f"SHIPS: {len(ships)} | Types: {types}") + + print(f"NEWS: {len(data.get('news', []))} | EARTHQUAKES: {len(data.get('earthquakes', []))} | CCTV: {len(data.get('cctv', []))}") +except Exception as e: + print(f"Error: {e}") diff --git a/backend/test_nyc2.py b/backend/test_nyc2.py new file mode 100644 index 0000000..a78f91b --- /dev/null +++ b/backend/test_nyc2.py @@ -0,0 +1,10 @@ +import requests, json + +url = "https://api.us.socrata.com/api/catalog/v1?domains=data.cityofnewyork.us&q=camera" +try: + r = requests.get(url) + res = r.json().get('results', []) + for d in res: + print(f"{d['resource']['id']} - {d['resource']['name']}") +except Exception as e: + print(e) diff --git a/backend/test_origin.py b/backend/test_origin.py new file mode 100644 index 0000000..311559f --- /dev/null +++ b/backend/test_origin.py @@ -0,0 +1,36 @@ +import json, urllib.request + +data = json.loads(urllib.request.urlopen('http://localhost:8000/api/live-data').read()) + +# Check trail data +comm = data.get('commercial_flights', []) +mil = data.get('military_flights', []) +tracked = data.get('tracked_flights', []) +pvt = data.get('private_flights', []) + +# Count flights with trails +comm_trails = [f for f in comm if f.get('trail') and len(f['trail']) > 0] +mil_trails = [f for f in mil if f.get('trail') and len(f['trail']) > 0] +tracked_trails = [f for f in tracked if f.get('trail') and len(f['trail']) > 0] +pvt_trails = [f for f in pvt if f.get('trail') and len(f['trail']) > 0] + +print(f"Commercial: {len(comm)} total, {len(comm_trails)} with trails") +print(f"Military: {len(mil)} total, {len(mil_trails)} with trails") +print(f"Tracked: {len(tracked)} total, {len(tracked_trails)} with trails") +print(f"Private: {len(pvt)} total, {len(pvt_trails)} with trails") + +# Show a sample trail +if mil_trails: + f = mil_trails[0] + print(f"\nSample trail ({f['callsign']}):") + print(f" Points: {len(f['trail'])}") + if f['trail']: + print(f" First: {f['trail'][0]}") + print(f" Last: {f['trail'][-1]}") + +# Check for grounded planes +grounded = [f for f in comm if f.get('alt', 999) <= 500 and f.get('speed_knots', 999) < 30] +print(f"\nGrounded commercial: {len(grounded)}") +if grounded: + g = grounded[0] + print(f" Example: {g['callsign']} alt={g.get('alt')} speed={g.get('speed_knots')}") diff --git a/backend/test_osm_db.py b/backend/test_osm_db.py new file mode 100644 index 0000000..f794def --- /dev/null +++ b/backend/test_osm_db.py @@ -0,0 +1,13 @@ +import sqlite3 + +try: + conn = sqlite3.connect('cctv.db') + conn.row_factory = sqlite3.Row + cur = conn.cursor() + cur.execute("SELECT source_agency, COUNT(*) as count FROM cameras WHERE id LIKE 'OSM-%' GROUP BY source_agency") + rows = cur.fetchall() + print('OSM Cameras by City:') + for r in rows: + print(f"{r['source_agency']}: {r['count']}") +except Exception as e: + print('DB Error:', e) diff --git a/backend/test_ships.py b/backend/test_ships.py new file mode 100644 index 0000000..6627547 --- /dev/null +++ b/backend/test_ships.py @@ -0,0 +1,12 @@ +import json +import urllib.request +import time + +time.sleep(5) +try: + data = urllib.request.urlopen('http://localhost:8000/api/live-data').read() + d = json.loads(data) + ships = d.get('ships', []) + print(f"Ships: {len(ships)}") +except Exception as e: + print(f"Error fetching API: {e}") diff --git a/backend/test_socrata.py b/backend/test_socrata.py new file mode 100644 index 0000000..5951bef --- /dev/null +++ b/backend/test_socrata.py @@ -0,0 +1,13 @@ +import requests, json + +print("Searching Socrata NYC/Seattle Cameras...") +try: + url = "https://api.us.socrata.com/api/catalog/v1?q=traffic cameras&limit=100" + r = requests.get(url) + res = r.json().get('results', []) + for d in res: + domain = d['metadata']['domain'].lower() + if 'seattle' in domain or 'newyork' in domain or 'nyc' in domain: + print(f"{d['resource']['id']} - {d['resource']['name']} ({domain})") +except Exception as e: + print(e) diff --git a/backend/test_trace.py b/backend/test_trace.py new file mode 100644 index 0000000..fffaa96 --- /dev/null +++ b/backend/test_trace.py @@ -0,0 +1,61 @@ +"""Test trace endpoints with explicit output.""" +import json, subprocess + +hex_code = "a34bac" # DOJ166 + +from datetime import datetime, timezone +now = datetime.now(timezone.utc) +date_str = now.strftime("%Y/%m/%d") +hex_prefix = hex_code[-2:] + +# Test 1: adsb.fi trace_full +url1 = f"https://globe.adsb.fi/data/traces/{date_str}/{hex_prefix}/trace_full_{hex_code}.json" +print(f"URL1: {url1}") +r = subprocess.run(["curl.exe", "-s", "--max-time", "10", url1], capture_output=True, text=True, timeout=15) +if r.stdout.strip().startswith("{"): + data = json.loads(r.stdout) + print(f"SUCCESS! Keys: {list(data.keys())}") + if 'trace' in data: + pts = data['trace'] + print(f"Trace points: {len(pts)}") + if pts: + print(f"FIRST (takeoff): {pts[0]}") + print(f"LAST (now): {pts[-1]}") +else: + print(f"Not JSON (first 100 chars): {r.stdout[:100]}") + # That response was behind cloudflare, try adsb.lol instead + +# Test 2: adsb.lol hex lookup +url2 = f"https://api.adsb.lol/v2/hex/{hex_code}" +print(f"\nURL2: {url2}") +r2 = subprocess.run(["curl.exe", "-s", "--max-time", "10", url2], capture_output=True, text=True, timeout=15) +if r2.stdout.strip().startswith("{"): + data = json.loads(r2.stdout) + if 'ac' in data and data['ac']: + ac = data['ac'][0] + keys = sorted(ac.keys()) + print(f"All keys ({len(keys)}): {keys}") +else: + print(f"Not JSON: {r2.stdout[:100]}") + +# Test 3: Try adsb.lol trace +url3 = f"https://api.adsb.lol/trace/{hex_code}" +print(f"\nURL3: {url3}") +r3 = subprocess.run(["curl.exe", "-s", "-o", "/dev/null", "-w", "%{http_code}", "--max-time", "10", url3], capture_output=True, text=True, timeout=15) +print(f"HTTP status: {r3.stdout}") + +# Test 4: Try globe.adsb.lol format +url4 = f"https://globe.adsb.lol/data/traces/{date_str}/{hex_prefix}/trace_full_{hex_code}.json" +print(f"\nURL4: {url4}") +r4 = subprocess.run(["curl.exe", "-s", "--max-time", "10", url4], capture_output=True, text=True, timeout=15) +if r4.stdout.strip().startswith("{"): + data = json.loads(r4.stdout) + print(f"SUCCESS! Keys: {list(data.keys())}") + if 'trace' in data: + pts = data['trace'] + print(f"Trace points: {len(pts)}") + if pts: + print(f"FIRST (takeoff): {pts[0]}") + print(f"LAST (now): {pts[-1]}") +else: + print(f"Response: {r4.stdout[:150]}") diff --git a/backend/test_ws.py b/backend/test_ws.py new file mode 100644 index 0000000..d9dee1e --- /dev/null +++ b/backend/test_ws.py @@ -0,0 +1,8 @@ +import asyncio, websockets +async def main(): + try: + async with websockets.connect('wss://stream.aisstream.io/v0/stream') as ws: + print('Connected to AIS Stream!') + except Exception as e: + print(f"Error: {e}") +asyncio.run(main()) diff --git a/backend/wsdot_sample.json b/backend/wsdot_sample.json new file mode 100644 index 0000000..b232c3b --- /dev/null +++ b/backend/wsdot_sample.json @@ -0,0 +1 @@ +Bad Request \ No newline at end of file diff --git a/backend/xlsx_analysis.txt b/backend/xlsx_analysis.txt new file mode 100644 index 0000000..d89009c --- /dev/null +++ b/backend/xlsx_analysis.txt @@ -0,0 +1,2533 @@ + +=== SHEET 1: 1000 rows === + Row0 Q: 'https://www.scanriverside.com/viewtopic.php?t=1274' + + Row1 B: 'Business' + Row1 C: 'Section 1' + Row1 E: 'Government' + Row1 F: 'Section 1' + Row1 H: 'People' + Row1 I: 'Section 1' + Row1 K: 'Sports' + Row1 L: 'Section 1' + Row1 N: 'Celebrity' + Row1 O: 'Section 1' + Row1 Q: 'State Govt./Law' + Row1 R: 'Section 1' + Row1 T: 'Other' + Row1 U: 'Section 1' + Row1 W: 'Test Aircraft' + Row1 X: 'Section 1' + Row1 Z: 'YouTubers' + Row1 AA: 'Section 1' + Row1 AC: 'Formula 1 VIP's' + Row1 AD: 'Section 1' + Row1 AF: 'Active GII's and GIII's' + Row1 AG: 'Section 1' + Row1 AI: 'Russia & Ukraine' + Row1 AK: 'Section 1' + Row1 AM: 'Helicopters & Blimps' + Row1 AN: 'Section 1' + Row1 AP: 'Unique Reg's' + Row1 AQ: 'Section 1' + Row1 AS: 'Saudi & UAE' + Row1 AT: 'Section 1' + Row1 AV: 'Schools' + Row1 AW: 'Section 1' + Row1 AY: 'Special Charter' + Row1 AZ: 'Section 1' + Row1 BB: 'Unknown Owners' + Row1 BC: 'Section 1' + Row1 BE: 'Frequent Flyers' + + Row2 B: 'https://globe.adsbexchange.com/?reg=N2702,N550AV,N551AV,N554AV,N556AV,N82123,N28' + Row2 D: '.' + Row2 E: 'https://globe.adsbexchange.com/?reg=929000,828000,980001,980002,990003,990004,00' + Row2 G: '.' + Row2 H: 'https://globe.adsbexchange.com/?reg=N628TS,N887WM,N608WM,N897WM,N194WM,N459WM,N8' + Row2 J: '.' + Row2 K: 'https://globe.adsbexchange.com/?reg=N801DM,N1AZ,N867DA,N36NE,N225NE,N101TD,N106T' + Row2 M: '.' + Row2 N: 'https://globe.adsbexchange.com/?reg=N313AR,N703BG,N701DB,N4DP,N800JM,N621MM,N767' + Row2 P: '.' + Row2 Q: 'https://globe.adsbexchange.com/?reg=N225LH,N1073S,N906V,N52437,N1263S,N407SA,N15' + Row2 S: '.' + Row2 T: 'https://globe.adsbexchange.com/?reg=N787RR,N794AJ,N330AU,N782SP,N783SP,FWBXL,FGX' + Row2 V: '.' + Row2 W: 'https://globe.adsbexchange.com/?reg=CGLBO,CGLBG,CGLBX,CGLB,N700GA,N702GD,N703GD,' + Row2 Y: '.' + Row2 Z: 'https://globe.adsbexchange.com/?reg=N2RF,N2MJ,N390GM,N3175W,N5921C,N9477A,N367HP' + Row2 AB: '.' + Row2 AC: 'https://globe.adsbexchange.com/?reg=MREEE,HBFXF,N155AN,OELCY,HSCDY,A9CHAK,OEIDM,' + Row2 AE: '.' + Row2 AH: '.' + Row2 AI: 'https://globe.adsbexchange.com/?reg=RA11005,VPCLS,RA02775,VPCLO,VPCLZ,P4MES,P4BD' + Row2 AJ: 'old' + Row2 AK: 'new (late 2023)' + Row2 AL: '.' + Row2 AM: 'https://globe.adsbexchange.com/?reg=N608WM,N4144C,N988FY,N983SV,N324FD,N1A,N2A,N' + Row2 AO: '.' + Row2 AP: 'https://globe.adsbexchange.com/?reg=MABCD,MAGMA,MAHAA,MAMBA,MDODO,MELON,MINTY,MT' + Row2 AR: '.' + Row2 AS: 'https://globe.adsbexchange.com/?reg=HZHM1,HZHM1A,HZHM1B,HZHM1C,HZHMED,HZHMS2,HZ1' + Row2 AU: '.' + Row2 AV: 'https://globe.adsbexchange.com/?reg=N70464,N70465,N10AU,N20AU,N934CT,N1UA,N851FS' + Row2 AX: '.' + Row2 AY: 'https://globe.adsbexchange.com/?reg=9HVIB,9HVIC,9HVID,9HVIE,9HVIG,9HVIH,9HVII,9H' + Row2 BA: '.' + Row2 BE: 'Name' + Row2 BF: 'Primary Aircraft' + Row2 BG: 'Logged?' + Row2 BH: 'Hours/days spent in air annually' + + Row3 B: '21st Century Fox America' + Row3 C: 'N2702' + Row3 D: '.' + Row3 E: 'United States of America 747/757' + Row3 F: '92-9000, 82-8000, 98-0001, 98-0002, 99-0003, 99-0004, 00-9001, 09-2016, 09-2017,' + Row3 G: '.' + Row3 H: 'Elon Musk' + Row3 I: 'N628TS' + Row3 J: '.' + Row3 K: 'Dallas Mavericks' + Row3 L: 'N801DM' + Row3 M: '.' + Row3 N: 'Alex Rodriguez' + Row3 O: 'N313AR' + Row3 P: '.' + Row3 Q: 'State of Alabama' + Row3 R: 'N225LH, N1073S, N906V, N52437, N1263S, N407SA, N157SA, N160SA, N477GF, N5329S' + Row3 S: '.' + Row3 T: 'Rolls Royce Test Bed' + Row3 U: 'N787RR' + Row3 V: '.' + Row3 W: 'Bombardier Global 7500' + Row3 X: 'C-GLBO, C-GLBG, C-GLBX, C-GBLB ' + Row3 Y: '.' + Row3 Z: 'CitationMax' + Row3 AA: 'N2RF, N2MJ' + Row3 AB: '.' + Row3 AC: 'Bernie Ecclestone ' + Row3 AD: 'M-REEE, HB-FXF' + Row3 AE: '.' + Row3 AF: 'Link 1' + Row3 AG: 'https://globe.adsbexchange.com/?reg=N55RG,XBPHA,N24YS,N890TJ,XBKFU,N137GJ,ZSPYY,' + Row3 AH: '.' + Row3 AI: 'Vladimir Potanin' + Row3 AJ: 'OE-LUC' + Row3 AK: 'RA11005' + Row3 AL: '.' + Row3 AM: 'Bill Gates' + Row3 AN: 'N608GV' + Row3 AO: '.' + Row3 AP: 'T7-ROYAL' + Row3 AQ: 'M-ABCD' + Row3 AR: '.' + Row3 AS: 'B747-468' + Row3 AT: 'HZHM1' + Row3 AU: '.' + Row3 AV: 'Air Force Academy' + Row3 AW: 'N70464, N70465' + Row3 AX: '.' + Row3 AY: 'VistaJet Global 7500' + Row3 AZ: '9H-VIB, 9H-VIC, 9H-VID, 9H-VIE, 9H-VIG, 9H-VIH, 9H-VII, 9H-VIJ, 9H-VIK, 9H-VIL, ' + Row3 BA: '.' + Row3 BE: 'Ken Griffin' + Row3 BF: 'Bombardier Global' + Row3 BG: 'Yes' + Row3 BH: '~800 hours a year' + + Row4 B: 'AbbVie' + Row4 C: 'N550AV, N551AV, N554AV, N556AV' + Row4 D: '.' + Row4 E: 'FBI (Federal Bureau of Investigation)' + Row4 F: 'N616RK' + Row4 G: '.' + Row4 H: 'Bill Gates' + Row4 I: 'N887GV, N608GV, N897GV' + Row4 J: '.' + Row4 K: 'Arizona Cardinals Football' + Row4 L: 'N1AZ, N867DA ' + Row4 M: '.' + Row4 N: 'Blake Shelton ' + Row4 O: 'N703BG' + Row4 P: '.' + Row4 Q: 'State of Alaska' + Row4 R: 'N1867, N574ST, N8370Q, N246CC, N145PL, N1323Y, N70715, N303GV, N20786, N4730E, N' + Row4 S: '.' + Row4 T: 'Zero G Plane' + Row4 U: 'N794AJ' + Row4 V: '.' + Row4 W: 'Gulfstream G700' + Row4 X: 'N700GA, N702GD, N703GD, N703GA, N704GA, N705GD, N706GD' + Row4 Y: '.' + Row4 Z: 'Premier1Driver' + Row4 AA: 'N390GM' + Row4 AB: '.' + Row4 AC: 'Chalerm Yoovidhya ' + Row4 AD: 'N155AN, OE-LCY, HS-CDY' + Row4 AE: '.' + Row4 AF: 'Link 2' + Row4 AG: 'https://globe.adsbexchange.com/?reg=N189PA,FWAAD,XBNXC,N945NA,N711VL,N892TM,N868' + Row4 AH: '.' + Row4 AI: 'Vladimir Potanin' + Row4 AJ: 'OE-IPE' + Row4 AL: '.' + Row4 AM: 'Blake Shelton' + Row4 AN: 'N4144C' + Row4 AO: '.' + Row4 AP: 'M-AGIC' + Row4 AQ: 'M-AGMA' + Row4 AR: '.' + Row4 AS: 'B747-368' + Row4 AT: 'HZHM1A' + Row4 AU: '.' + Row4 AV: 'Auburn University' + Row4 AW: 'N10AU, N20AU' + Row4 AX: '.' + Row4 AY: 'NetJets Global 7500 & 5-6' + Row4 AZ: 'N160QS, N141QS, N100QS, N162QS, N142QS, N143QS, N166QS, N104QS, N163QS, N109QS, ' + Row4 BA: '.' + Row4 BE: 'Thomas Flohr ' + Row4 BF: 'Bombardier Global' + Row4 BG: 'No' + Row4 BH: '~750 hours a year' + + +=== SHEET 2: 1006 rows === + + Row1 B: 'Superyachts - Russian/Oligarch' + Row1 G: 'Superyachts - General' + + Row2 B: 'Owner' + Row2 C: 'Vessel Name' + Row2 D: 'IMO' + Row2 E: 'MMSI' + Row2 G: 'Owner' + Row2 H: 'Vessel Name' + Row2 I: 'IMO' + Row2 J: 'MMSI' + + Row3 B: 'Roman Abramovich' + Row3 C: 'Eclipse' + Row3 D: '1009613.0' + Row3 E: '3.10593E8' + Row3 G: 'Sheikh Tamim bin Hamad Al Thani' + Row3 H: 'Al Lusail' + Row3 I: '9772929.0' + Row3 J: '4.66443E8' + + Row4 B: 'Roman Abramovich' + Row4 C: 'Eclipse 1 (Tender)' + Row4 G: 'Family of Steve Jobs' + Row4 H: 'Venus' + Row4 I: '1011836.0' + Row4 J: '3.19327E8' + + +=== SHEET 3: 1079 rows === + + Row1 B: 'Type/Airframe' + Row1 C: 'Regisitration' + Row1 D: '3D Tour Link' + Row1 F: 'Key' + + Row2 B: 'Airbus A350 (Commercial)' + Row2 D: 'https://my.matterport.com/show/?m=BuSmyKU9tJH' + Row2 F: 'Term' + Row2 G: 'Meaning' + + Row3 B: 'Airbus ACJ318 (Comlux)' + Row3 D: 'https://my.matterport.com/show/?m=uNhpDuo68eY' + Row3 F: 'ACJ' + Row3 G: 'Airbus Corporate Jet (private jet)' + + Row4 B: 'Airbus ACJ318 (Global Jet Lux.)' + Row4 C: 'LX-LTI' + Row4 D: 'https://my.matterport.com/show/?m=9mwsfKBPPbq' + Row4 F: 'BBJ' + Row4 G: 'Boeing Business Jet (private jet)' + + +=== SHEET 4: 1002 rows === + Row0 C: 'Spy Planes' + + Row1 B: 'ICAO' + Row1 C: 'Company' + + Row2 B: 'A006AF' + Row2 C: 'AIRCRAFT ASSOCIATES INC' + + Row3 B: 'A00C4B' + Row3 C: 'OTV LEASING' + + Row4 B: 'A04ECF' + Row4 C: 'UNITED STATES DEPARTMENT OF JUSTICE' + Row4 G: 'https://github.com/enigma-io/fbi-planes/blob/master/data/fbi-planes.csv' + + +TOTAL ENTRIES: 4433 +UNIQUE REGISTRATIONS: 2255 + +plane-alert-db: 15609 registrations +Already covered: 516 +MISSING: 1739 + +--- ALREADY TRACKED --- + https://globe.adsbexchange.com/?reg=N270 N550AV DB_CAT: As Seen on TV DB_OP: Abbvie US + https://globe.adsbexchange.com/?reg=N270 N554AV DB_CAT: As Seen on TV DB_OP: AbbVie + https://globe.adsbexchange.com/?reg=N270 N82123 DB_CAT: As Seen on TV DB_OP: Adobe Inc + https://globe.adsbexchange.com/?reg=N270 N280AF DB_CAT: Vanity Plate DB_OP: Aflac + https://globe.adsbexchange.com/?reg=N270 N650GB DB_CAT: As Seen on TV DB_OP: American Express Travel + https://globe.adsbexchange.com/?reg=N270 N100AL DB_CAT: As Seen on TV DB_OP: Abbott Laboratories + https://globe.adsbexchange.com/?reg=N270 N900AL DB_CAT: As Seen on TV DB_OP: Abbott Laboratories + https://globe.adsbexchange.com/?reg=N270 N550AL DB_CAT: As Seen on TV DB_OP: Abbott Laboratories + https://globe.adsbexchange.com/?reg=N270 N558GA DB_CAT: As Seen on TV DB_OP: Amgen + https://globe.adsbexchange.com/?reg=N270 N651BA DB_CAT: As Seen on TV DB_OP: Bank of America + https://globe.adsbexchange.com/?reg=N270 N710CF DB_CAT: As Seen on TV DB_OP: Calspan Corp + https://globe.adsbexchange.com/?reg=N270 N797CT DB_CAT: As Seen on TV DB_OP: Caterpillar Inc + https://globe.adsbexchange.com/?reg=N270 N385CT DB_CAT: As Seen on TV DB_OP: Caterpillar Inc + https://globe.adsbexchange.com/?reg=N270 N8VB DB_CAT: As Seen on TV DB_OP: Paramount Pictures + https://globe.adsbexchange.com/?reg=N270 N75VB DB_CAT: As Seen on TV DB_OP: Paramount Pictures + https://globe.adsbexchange.com/?reg=N270 N1876P DB_CAT: Climate Crisis DB_OP: Chevron USA + https://globe.adsbexchange.com/?reg=N270 N1895T DB_CAT: Climate Crisis DB_OP: Chevron USA + https://globe.adsbexchange.com/?reg=N270 N1901G DB_CAT: Climate Crisis DB_OP: Chevron USA + https://globe.adsbexchange.com/?reg=N270 N967TC DB_CAT: As Seen on TV DB_OP: Chick-Fil-A + https://globe.adsbexchange.com/?reg=N270 N2019C DB_CAT: As Seen on TV DB_OP: Bombardier Aerospace Corp + https://globe.adsbexchange.com/?reg=N270 N805WM DB_CAT: As Seen on TV DB_OP: Citigroup Inc + https://globe.adsbexchange.com/?reg=N270 N886RW DB_CAT: As Seen on TV DB_OP: Coca-Cola Company + https://globe.adsbexchange.com/?reg=N270 N959RW DB_CAT: As Seen on TV DB_OP: Coca-Cola Company + https://globe.adsbexchange.com/?reg=N270 N982RW DB_CAT: As Seen on TV DB_OP: Coca-Cola Company + https://globe.adsbexchange.com/?reg=N270 N793CP DB_CAT: Climate Crisis DB_OP: ConocoPhillips + https://globe.adsbexchange.com/?reg=N270 N676BA DB_CAT: As Seen on TV DB_OP: Bank of America + https://globe.adsbexchange.com/?reg=N270 N228BA DB_CAT: As Seen on TV DB_OP: Bank of America + https://globe.adsbexchange.com/?reg=N270 N285BA DB_CAT: As Seen on TV DB_OP: Bank of America + https://globe.adsbexchange.com/?reg=N270 N286BA DB_CAT: As Seen on TV DB_OP: Bank of America + https://globe.adsbexchange.com/?reg=N270 N708JH DB_CAT: Dogs with Jobs DB_OP: Dept of State JPATS + https://globe.adsbexchange.com/?reg=N270 N119NA DB_CAT: Oxcart DB_OP: Department Of Justice (DOJ) + https://globe.adsbexchange.com/?reg=N270 N721AL DB_CAT: Oxcart DB_OP: Department Of Justice + https://globe.adsbexchange.com/?reg=N270 N874TW DB_CAT: Oxcart DB_OP: Department Of Justice (DOJ) + https://globe.adsbexchange.com/?reg=N270 N115H DB_CAT: Oxcart DB_OP: Department of Homeland Security + https://globe.adsbexchange.com/?reg=N270 N279AD DB_CAT: Dogs with Jobs DB_OP: Dept of State JPATS + https://globe.adsbexchange.com/?reg=N270 N640CS DB_CAT: Dogs with Jobs DB_OP: Dept of State JPATS + https://globe.adsbexchange.com/?reg=N270 N311MS DB_CAT: Governments DB_OP: Department of Justice (DOJ) + https://globe.adsbexchange.com/?reg=N270 N2316 DB_CAT: Nuclear DB_OP: Nuclear Security Administration + https://globe.adsbexchange.com/?reg=N270 N2317 DB_CAT: Nuclear DB_OP: Nuclear Security Administration + https://globe.adsbexchange.com/?reg=N270 N2319 DB_CAT: Nuclear DB_OP: Nuclear Security Administration + https://globe.adsbexchange.com/?reg=N270 N980ST DB_CAT: Nuclear DB_OP: US Nuclear Security Administration + https://globe.adsbexchange.com/?reg=N270 N990ST DB_CAT: Nuclear DB_OP: US Nuclear Security Administration + https://globe.adsbexchange.com/?reg=N270 N628TS DB_CAT: Don't you know who I am? DB_OP: Falcon Landing LLC + https://globe.adsbexchange.com/?reg=N270 N887WM DB_CAT: Don't you know who I am? DB_OP: Bill Gates + https://globe.adsbexchange.com/?reg=N270 N194WM DB_CAT: Don't you know who I am? DB_OP: Bill Gates + https://globe.adsbexchange.com/?reg=N270 N817GS DB_CAT: Don't you know who I am? DB_OP: Larry Ellison + https://globe.adsbexchange.com/?reg=N270 N921MT DB_CAT: Don't you know who I am? DB_OP: Mark Cuban + https://globe.adsbexchange.com/?reg=N270 N29UB DB_CAT: Zoomies DB_OP: Jared Isaacman + https://globe.adsbexchange.com/?reg=N270 N512XA DB_CAT: Distinctive DB_OP: Jared Isaacman + https://globe.adsbexchange.com/?reg=N270 N135EM DB_CAT: Distinctive DB_OP: Jared Isaacman + https://globe.adsbexchange.com/?reg=N270 N137EM DB_CAT: Distinctive DB_OP: Jared Isaacman + https://globe.adsbexchange.com/?reg=N270 N138EM DB_CAT: Distinctive DB_OP: Jared Isaacman + https://globe.adsbexchange.com/?reg=N270 N68KP DB_CAT: PIA DB_OP: Ken Griffin + https://globe.adsbexchange.com/?reg=N270 N302AK DB_CAT: PIA DB_OP: Ken Griffin + https://globe.adsbexchange.com/?reg=N270 N113CS DB_CAT: PIA DB_OP: 113CS LLC + https://globe.adsbexchange.com/?reg=N270 N138GL DB_CAT: Don't you know who I am? DB_OP: George Lucas + https://globe.adsbexchange.com/?reg=N270 N51VE DB_CAT: Vanity Plate DB_OP: LoveFrom Inc + https://globe.adsbexchange.com/?reg=N270 N651WE DB_CAT: As Seen on TV DB_OP: Google Inc + https://globe.adsbexchange.com/?reg=N270 N652WE DB_CAT: Don't you know who I am? DB_OP: Eric Schmidt + https://globe.adsbexchange.com/?reg=N270 N950TR DB_CAT: Climate Crisis DB_OP: Silver Air + https://globe.adsbexchange.com/?reg=N270 N517TW DB_CAT: Don't you know who I am? DB_OP: Tiger Woods + https://globe.adsbexchange.com/?reg=N270 N68885 DB_CAT: Don't you know who I am? DB_OP: Mark Zuckerberg + https://globe.adsbexchange.com/?reg=N270 N47EG DB_CAT: Don't you know who I am? DB_OP: Michael Bloomberg + https://globe.adsbexchange.com/?reg=N270 N5MV DB_CAT: Don't you know who I am? DB_OP: Michael Bloomberg + https://globe.adsbexchange.com/?reg=N270 N8AG DB_CAT: Don't you know who I am? DB_OP: Michael Bloomberg + https://globe.adsbexchange.com/?reg=N270 N3880 DB_CAT: Don't you know who I am? DB_OP: Mark Zuckerberg + https://globe.adsbexchange.com/?reg=N270 N1AZ DB_CAT: Football DB_OP: Arizona Cardinals + https://globe.adsbexchange.com/?reg=N270 N867DA DB_CAT: Football DB_OP: The Arizona Cardinals + https://globe.adsbexchange.com/?reg=N270 N36NE DB_CAT: Football DB_OP: Eastern Airlines + https://globe.adsbexchange.com/?reg=N270 N225NE DB_CAT: Football DB_OP: Eastern Airlines + https://globe.adsbexchange.com/?reg=N270 N101TD DB_CAT: Climate Crisis DB_OP: Bopper Airways + https://globe.adsbexchange.com/?reg=N270 N931FL DB_CAT: As Seen on TV DB_OP: Hewlett-Packard + https://globe.adsbexchange.com/?reg=N270 N1DC DB_CAT: Don't you know who I am? DB_OP: Jerry Jones + https://globe.adsbexchange.com/?reg=N270 N625HR DB_CAT: As Seen on TV DB_OP: Houston Rockets + https://globe.adsbexchange.com/?reg=N270 N9CE DB_CAT: Vanity Plate DB_OP: Chase Elliot + https://globe.adsbexchange.com/?reg=N270 N629BK DB_CAT: As Seen on TV DB_OP: Brad Keselowski Racing + https://globe.adsbexchange.com/?reg=N270 N800MA DB_CAT: Don't you know who I am? DB_OP: Marco Andretti + https://globe.adsbexchange.com/?reg=N270 N518JG DB_CAT: As Seen on TV DB_OP: Joe Gibbs Racing + https://globe.adsbexchange.com/?reg=N270 N519JG DB_CAT: As Seen on TV DB_OP: Joe Gibbs Racing + https://globe.adsbexchange.com/?reg=N270 N520JG DB_CAT: As Seen on TV DB_OP: Joe Gibbs Racing + https://globe.adsbexchange.com/?reg=N270 N500RH DB_CAT: As Seen on TV DB_OP: Hendrick Motorsports + https://globe.adsbexchange.com/?reg=N270 N509RH DB_CAT: As Seen on TV DB_OP: Hendrick Motorsports + https://globe.adsbexchange.com/?reg=N270 N500PR DB_CAT: As Seen on TV DB_OP: Penske Racing Inc. + https://globe.adsbexchange.com/?reg=N270 N270GP DB_CAT: Don't you know who I am? DB_OP: Troy Aikman + https://globe.adsbexchange.com/?reg=N270 N330RW DB_CAT: Don't you know who I am? DB_OP: Russel Wilson + https://globe.adsbexchange.com/?reg=N270 N70AG DB_CAT: Football DB_OP: LA Chargers + https://globe.adsbexchange.com/?reg=N270 N1RP DB_CAT: Don't you know who I am? DB_OP: Roger Penske + https://globe.adsbexchange.com/?reg=N270 N5117 DB_CAT: Football DB_OP: The NY Football Giants + https://globe.adsbexchange.com/?reg=N270 N411ST DB_CAT: Football DB_OP: Benson Football LLC + https://globe.adsbexchange.com/?reg=N270 N313AR DB_CAT: Don't you know who I am? DB_OP: Alex Rodriguez + https://globe.adsbexchange.com/?reg=N270 N701DB DB_CAT: Don't you know who I am? DB_OP: Dan Bilzerian + https://globe.adsbexchange.com/?reg=N270 N4DP DB_CAT: Don't you know who I am? DB_OP: Green Chair Productions Inc + https://globe.adsbexchange.com/?reg=N270 N621MM DB_CAT: Don't you know who I am? DB_OP: Island Jet Inc + https://globe.adsbexchange.com/?reg=N270 N767CJ DB_CAT: Don't you know who I am? DB_OP: Drake + https://globe.adsbexchange.com/?reg=N270 N6GU DB_CAT: Don't you know who I am? DB_OP: Harrison Ford + https://globe.adsbexchange.com/?reg=N270 N162JC DB_CAT: Don't you know who I am? DB_OP: Jim Carrey + https://globe.adsbexchange.com/?reg=N270 N905FJ DB_CAT: Don't you know who I am? DB_OP: Constellation Productions + https://globe.adsbexchange.com/?reg=N270 N7KC DB_CAT: Don't you know who I am? DB_OP: Kenny Chesney + https://globe.adsbexchange.com/?reg=N270 N71KR DB_CAT: Don't you know who I am? DB_OP: Kid Rock + https://globe.adsbexchange.com/?reg=N270 N810KJ DB_CAT: Don't you know who I am? DB_OP: Kylie Jenner + https://globe.adsbexchange.com/?reg=N270 N143MW DB_CAT: Don't you know who I am? DB_OP: Mark Wahlberg + https://globe.adsbexchange.com/?reg=N270 N236MJ DB_CAT: Don't you know who I am? DB_OP: Michael Jordan + https://globe.adsbexchange.com/?reg=N270 N540W DB_CAT: Don't you know who I am? DB_OP: Oprah Winfrey + https://globe.adsbexchange.com/?reg=N270 N950PB DB_CAT: As Seen on TV DB_OP: Playboy Corporation + https://globe.adsbexchange.com/?reg=N270 N44440 DB_CAT: Don't you know who I am? DB_OP: Jay-Z + https://globe.adsbexchange.com/?reg=N270 N3250N DB_CAT: Don't you know who I am? DB_OP: Shaq + https://globe.adsbexchange.com/?reg=N270 N800KS DB_CAT: Climate Crisis DB_OP: AEJ Services LLC + https://globe.adsbexchange.com/?reg=N270 N900KS DB_CAT: Don't you know who I am? DB_OP: Steven Spielberg + https://globe.adsbexchange.com/?reg=N270 N77VA DB_CAT: Don't you know who I am? DB_OP: Tom Cruise + https://globe.adsbexchange.com/?reg=N270 N90322 DB_CAT: Police Forces DB_OP: Alaska Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N911AZ DB_CAT: Police Forces DB_OP: Arizona Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N921AZ DB_CAT: Police Forces DB_OP: Arizona Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N56AZ DB_CAT: Police Forces DB_OP: Arizona Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N58AZ DB_CAT: Police Forces DB_OP: Arizona Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N783AZ DB_CAT: Police Forces DB_OP: Arizona Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N140HP DB_CAT: Police Forces DB_OP: California Highway Patrol + https://globe.adsbexchange.com/?reg=N270 N327SF DB_CAT: Aerial Firefighter DB_OP: Colorado Fire Prevention and Control + https://globe.adsbexchange.com/?reg=N270 N943FL DB_CAT: Vanity Plate DB_OP: Ron Desantis + https://globe.adsbexchange.com/?reg=N270 N239KQ DB_CAT: Governments DB_OP: Idaho Transportation Department + https://globe.adsbexchange.com/?reg=N270 N24SP DB_CAT: Police Forces DB_OP: Kentucky State Police + https://globe.adsbexchange.com/?reg=N270 N36SP DB_CAT: Police Forces DB_OP: Kentucky State Police + https://globe.adsbexchange.com/?reg=N270 N220SP DB_CAT: Police Forces DB_OP: Kentucky State Police + https://globe.adsbexchange.com/?reg=N270 N65HA DB_CAT: Dogs with Jobs DB_OP: Louisiana Department of Wildlife and Fis + https://globe.adsbexchange.com/?reg=N270 N91WF DB_CAT: Dogs with Jobs DB_OP: Louisiana Department of Wildlife and Fis + https://globe.adsbexchange.com/?reg=N270 N670SP DB_CAT: Police Forces DB_OP: Louisiana Department of Public Safety + https://globe.adsbexchange.com/?reg=N270 N381MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N382MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N383MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N384MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N385MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N386MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N387MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N388MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N389MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N390MD DB_CAT: Police Forces DB_OP: Maryland State Police + https://globe.adsbexchange.com/?reg=N270 N823JM DB_CAT: Police Forces DB_OP: Massachusetts State Police + https://globe.adsbexchange.com/?reg=N270 N822PP DB_CAT: Police Forces DB_OP: Massachusetts State Police + https://globe.adsbexchange.com/?reg=N270 N825MM DB_CAT: Police Forces DB_OP: Massachusetts State Police + https://globe.adsbexchange.com/?reg=N270 N824AH DB_CAT: Police Forces DB_OP: Massachusetts State Police + https://globe.adsbexchange.com/?reg=N270 N162ST DB_CAT: Police Forces DB_OP: Michigan State Police + https://globe.adsbexchange.com/?reg=N270 N383ST DB_CAT: Police Forces DB_OP: Michigan State Police + https://globe.adsbexchange.com/?reg=N270 N768ST DB_CAT: Police Forces DB_OP: Michigan State Police + https://globe.adsbexchange.com/?reg=N270 N827ST DB_CAT: Police Forces DB_OP: MI State Police + https://globe.adsbexchange.com/?reg=N270 N1NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N2NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N3NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N5NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N6NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N7NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N9NJ DB_CAT: Police Forces DB_OP: New Jersey State Police + https://globe.adsbexchange.com/?reg=N270 N9SP DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N12SP DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N61SP DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N200NY DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N430NY DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N430SP DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N432NY DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N761NY DB_CAT: Police Forces DB_OP: New York State Police + https://globe.adsbexchange.com/?reg=N270 N3NC DB_CAT: Ptolemy would be proud DB_OP: North Carolina Dept of Transportation + https://globe.adsbexchange.com/?reg=N270 N1712S DB_CAT: Governments DB_OP: North Carolina Environment and Natural R + https://globe.adsbexchange.com/?reg=N270 N401NC DB_CAT: Police Forces DB_OP: North Carolina Highway Patrol + https://globe.adsbexchange.com/?reg=N270 N404NC DB_CAT: Police Forces DB_OP: North Carolina Highway Patrol + https://globe.adsbexchange.com/?reg=N270 N405NC DB_CAT: Police Forces DB_OP: North Carolina Highway Patrol + https://globe.adsbexchange.com/?reg=N270 N406NC DB_CAT: Police Forces DB_OP: North Carolina State Highway Patrol + https://globe.adsbexchange.com/?reg=N270 N801NC DB_CAT: Governments DB_OP: North Carolina Agriculture & Consumer + https://globe.adsbexchange.com/?reg=N270 N803NC DB_CAT: Aerial Firefighter DB_OP: North Carolina Forest Service + https://globe.adsbexchange.com/?reg=N270 N920NC DB_CAT: Governments DB_OP: North Carolina Agriculture & Consumer + https://globe.adsbexchange.com/?reg=N270 N72HP DB_CAT: Police Forces DB_OP: Ohio Highway Patrol + https://globe.adsbexchange.com/?reg=N270 N872ST DB_CAT: Police Forces DB_OP: Pennsylvania State Police + https://globe.adsbexchange.com/?reg=N270 N873ST DB_CAT: Police Forces DB_OP: Pennsylvania State Police + https://globe.adsbexchange.com/?reg=N270 N874ST DB_CAT: Police Forces DB_OP: Pennsylvania State Police + https://globe.adsbexchange.com/?reg=N270 N875ST DB_CAT: Police Forces DB_OP: Pennsylvania State Police + https://globe.adsbexchange.com/?reg=N270 N878ST DB_CAT: Police Forces DB_OP: Pennsylvania State Police + https://globe.adsbexchange.com/?reg=N270 N879ST DB_CAT: Police Forces DB_OP: Pennsylvania State Police + https://globe.adsbexchange.com/?reg=N270 N1SC DB_CAT: Governments DB_OP: South Carolina Aeronautics Commission + https://globe.adsbexchange.com/?reg=N270 N2SC DB_CAT: Governments DB_OP: South Carolina Aeronautics Commission + https://globe.adsbexchange.com/?reg=N270 N787RR DB_CAT: Distinctive DB_OP: Rolls Royce + https://globe.adsbexchange.com/?reg=N270 N794AJ DB_CAT: Distinctive DB_OP: Zero Gravity Corporation + https://globe.adsbexchange.com/?reg=N270 N782SP DB_CAT: Jesus he Knows me DB_OP: Samaritans Purse + https://globe.adsbexchange.com/?reg=N270 N718BA DB_CAT: Distinctive DB_OP: Boeing + https://globe.adsbexchange.com/?reg=N270 N747BC DB_CAT: Distinctive DB_OP: Boeing + https://globe.adsbexchange.com/?reg=N270 N780BA DB_CAT: Distinctive DB_OP: Boeing + https://globe.adsbexchange.com/?reg=N270 N249BA DB_CAT: Distinctive DB_OP: Boeing + https://globe.adsbexchange.com/?reg=N270 N118TG DB_CAT: Dogs with Jobs DB_OP: International Air Response + https://globe.adsbexchange.com/?reg=N270 N120TG DB_CAT: Distinctive DB_OP: Intl Air Response + https://globe.adsbexchange.com/?reg=N270 N890WA DB_CAT: Flying Doctors DB_OP: Life Flight Network + https://globe.adsbexchange.com/?reg=N270 N661LF DB_CAT: Flying Doctors DB_OP: Life Flight Network + https://globe.adsbexchange.com/?reg=N270 N662LF DB_CAT: Flying Doctors DB_OP: Life Flight + https://globe.adsbexchange.com/?reg=N270 N401LC DB_CAT: Distinctive DB_OP: Lynden Air Cargo + https://globe.adsbexchange.com/?reg=N270 N402LC DB_CAT: Distinctive DB_OP: Lynden Air Cargo + https://globe.adsbexchange.com/?reg=N270 N403LC DB_CAT: Distinctive DB_OP: Lynden Air Cargo + https://globe.adsbexchange.com/?reg=N270 N410LC DB_CAT: Distinctive DB_OP: Lynden Air Cargo + https://globe.adsbexchange.com/?reg=N270 N165PA DB_CAT: Hired Gun DB_OP: Phoenix Air + https://globe.adsbexchange.com/?reg=N270 N164PA DB_CAT: Hired Gun DB_OP: Phoenix Air + https://globe.adsbexchange.com/?reg=N270 N102VS DB_CAT: Hired Gun DB_OP: Calspan Corporation + https://globe.adsbexchange.com/?reg=N270 N304VS DB_CAT: Hired Gun DB_OP: Calspan Corporation + https://globe.adsbexchange.com/?reg=N270 N600LL DB_CAT: Flying Doctors DB_OP: Milton S Hershey Medical Center + https://globe.adsbexchange.com/?reg=N270 N611LL DB_CAT: Flying Doctors DB_OP: Milton S Hershey Medical Center + https://globe.adsbexchange.com/?reg=N270 N896LL DB_CAT: Flying Doctors DB_OP: Milton S Hershey Medical Center + https://globe.adsbexchange.com/?reg=N270 N916LL DB_CAT: Flying Doctors DB_OP: Milton S Hershey Medical Center + https://globe.adsbexchange.com/?reg=N270 N524NA DB_CAT: Distinctive DB_OP: NASA + https://globe.adsbexchange.com/?reg=N270 N528NA DB_CAT: Distinctive DB_OP: NASA + https://globe.adsbexchange.com/?reg=N270 N130AR DB_CAT: Dogs with Jobs DB_OP: National Science Foundation + https://globe.adsbexchange.com/?reg=N270 N706GD DB_CAT: As Seen on TV DB_OP: Gulfstream Aerospace Corp + https://globe.adsbexchange.com/?reg=N270 N757HW DB_CAT: Distinctive DB_OP: Honeywell Intl + https://globe.adsbexchange.com/?reg=N270 N170EH DB_CAT: As Seen on TV DB_OP: Honeywell International + https://globe.adsbexchange.com/?reg=N270 N609PA DB_CAT: As Seen on TV DB_OP: AgustaWestland Philadelphia + https://globe.adsbexchange.com/?reg=N270 N609PH DB_CAT: As Seen on TV DB_OP: AgustaWestland Philadelphia + https://globe.adsbexchange.com/?reg=N270 N250UT DB_CAT: Distinctive DB_OP: Beta Air + https://globe.adsbexchange.com/?reg=N270 N757A DB_CAT: Distinctive DB_OP: Boeing + https://globe.adsbexchange.com/?reg=N270 N32GK DB_CAT: Joe Cool DB_OP: Vision GK + https://globe.adsbexchange.com/?reg=N270 N780LM DB_CAT: As Seen on TV DB_OP: Liberty Media Corp + https://globe.adsbexchange.com/?reg=N270 N737LE DB_CAT: Oligarch DB_OP: Leonard Blavatnik + https://globe.adsbexchange.com/?reg=N270 N777UK DB_CAT: Oligarch DB_OP: Leonard Blavatnik + https://globe.adsbexchange.com/?reg=N270 N600EB DB_CAT: Don't you know who I am? DB_OP: Len Blavatnik + https://globe.adsbexchange.com/?reg=N270 N761LE DB_CAT: Oligarch DB_OP: Leonard Blavatnik + https://globe.adsbexchange.com/?reg=N270 N1A DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N270 N2A DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N270 N3A DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N270 N10A DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N270 N435NA DB_CAT: Distinctive DB_OP: NASA + https://globe.adsbexchange.com/?reg=N270 N767A DB_CAT: Climate Crisis DB_OP: Saudi Aramco + https://globe.adsbexchange.com/?reg=N270 N70464 DB_CAT: Aerobatic Teams DB_OP: USAF + https://globe.adsbexchange.com/?reg=N270 N70465 DB_CAT: Aerobatic Teams DB_OP: USAF + https://globe.adsbexchange.com/?reg=N270 N10AU DB_CAT: Football DB_OP: Auburn University + https://globe.adsbexchange.com/?reg=N270 N934CT DB_CAT: Football DB_OP: Clemson University + https://globe.adsbexchange.com/?reg=N270 N1UA DB_CAT: Vanity Plate DB_OP: Crimson Tide Foundation + https://globe.adsbexchange.com/?reg=N270 N851FS DB_CAT: Football DB_OP: Seminole Boosters Inc. + https://globe.adsbexchange.com/?reg=N270 N865UT DB_CAT: Football DB_OP: University of Tennessee + https://globe.adsbexchange.com/?reg=N270 N794UT DB_CAT: Football DB_OP: University of Tennessee + https://globe.adsbexchange.com/?reg=N270 N100FG DB_CAT: As Seen on TV DB_OP: University of Florida Athletic Associati + https://globe.adsbexchange.com/?reg=N270 N101FG DB_CAT: Vanity Plate DB_OP: University of Florida Athletic Associati + https://globe.adsbexchange.com/?reg=N270 N836BA DB_CAT: Climate Crisis DB_OP: Boeing Executive Flight Operations + https://globe.adsbexchange.com/?reg=N270 N839BA DB_CAT: Climate Crisis DB_OP: Boeing Executive Flight Operations + https://globe.adsbexchange.com/?reg=N270 N547BA DB_CAT: As Seen on TV DB_OP: Boeing Executive Flight Operations + 21st Century Fox America N74A DB_CAT: Distinctive DB_OP: Missile Defense Agency + 21st Century Fox America N36PN DB_CAT: Distinctive DB_OP: The A-Team + 21st Century Fox America N82CR DB_CAT: Distinctive DB_OP: Northrop Grumman + AbbVie N189PA DB_CAT: Hired Gun DB_OP: Phoenix Air + AbbVie N178B DB_CAT: Distinctive DB_OP: Missile Defence Agency + Adobe N992NA DB_CAT: Distinctive DB_OP: NASA + Adobe N173PA DB_CAT: Hired Gun DB_OP: Phoenix Air + Adobe N184PA DB_CAT: Hired Gun DB_OP: Phoenix Air + Adobe N190PA DB_CAT: Hired Gun DB_OP: Phoenix Air + Adobe N197PA DB_CAT: Hired Gun DB_OP: Phoenix Air + Aflac N183PA DB_CAT: Hired Gun DB_OP: Phoenix Air + Aflac N802NA DB_CAT: Distinctive DB_OP: NASA + Aflac N818EC DB_CAT: Hired Gun DB_OP: Phoenix Air + Air Lease Corp. N808NA DB_CAT: Distinctive DB_OP: NASA + Air Lease Corp. N608BG DB_CAT: Distinctive DB_OP: NASA + Air Lease Corp. N44HB DB_CAT: Hired Gun DB_OP: Phoenix Air + Air Lease Corp. N30LX DB_CAT: As Seen on TV DB_OP: Lockheed Martin Corp + Allen & Company N520NA DB_CAT: Distinctive DB_OP: NASA + Amgen N1KE DB_CAT: Vanity Plate DB_OP: Phil Knight + CarMax N671LE DB_CAT: Oligarch DB_OP: Leonard Blavatnik + https://globe.adsbexchange.com/?reg=N131 N82CW DB_CAT: As Seen on TV DB_OP: Costco Wholesale + https://globe.adsbexchange.com/?reg=N131 N83CW DB_CAT: As Seen on TV DB_OP: Costco Wholesale + https://globe.adsbexchange.com/?reg=N131 N804CE DB_CAT: As Seen on TV DB_OP: Cummins + https://globe.adsbexchange.com/?reg=N131 N327RX DB_CAT: As Seen on TV DB_OP: CVS Pharmacy + https://globe.adsbexchange.com/?reg=N131 N812RX DB_CAT: As Seen on TV DB_OP: CVS Pharmacy + https://globe.adsbexchange.com/?reg=N131 N214TF DB_CAT: As Seen on TV DB_OP: CVS Pharmacy + https://globe.adsbexchange.com/?reg=N131 N100ES DB_CAT: As Seen on TV DB_OP: Earth Star Inc + https://globe.adsbexchange.com/?reg=N131 N200ES DB_CAT: As Seen on TV DB_OP: Earth Star Inc + https://globe.adsbexchange.com/?reg=N131 N500ES DB_CAT: As Seen on TV DB_OP: Earth Star Inc + https://globe.adsbexchange.com/?reg=N131 N441DT DB_CAT: As Seen on TV DB_OP: Family Dollar + https://globe.adsbexchange.com/?reg=N131 N652BA DB_CAT: As Seen on TV DB_OP: Bank of America + https://globe.adsbexchange.com/?reg=N131 N307EL DB_CAT: As Seen on TV DB_OP: Eli Lilly & Co + https://globe.adsbexchange.com/?reg=N131 N308EL DB_CAT: As Seen on TV DB_OP: Eli Lilly & Co + https://globe.adsbexchange.com/?reg=N131 N57EL DB_CAT: As Seen on TV DB_OP: Enterprise Rent-A-Car + https://globe.adsbexchange.com/?reg=N131 N100A DB_CAT: Climate Crisis DB_OP: Exxon Mobil Corp + https://globe.adsbexchange.com/?reg=N131 N200A DB_CAT: Climate Crisis DB_OP: Exxon Mobil Corp + https://globe.adsbexchange.com/?reg=N131 N300A DB_CAT: Climate Crisis DB_OP: Exxon Mobil Corp + https://globe.adsbexchange.com/?reg=N131 N285EM DB_CAT: Climate Crisis DB_OP: Exxon Mobil Corp + https://globe.adsbexchange.com/?reg=N131 N388FT DB_CAT: As Seen on TV DB_OP: Franklin Templeton Travel + https://globe.adsbexchange.com/?reg=N131 N587G DB_CAT: As Seen on TV DB_OP: General Dynamics Corp + https://globe.adsbexchange.com/?reg=N131 N586G DB_CAT: As Seen on TV DB_OP: General Dynamics Corp + https://globe.adsbexchange.com/?reg=N131 N20G DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N131 N24G DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N131 N22G DB_CAT: As Seen on TV DB_OP: Goodyear Tire & Rubber Company + https://globe.adsbexchange.com/?reg=N131 N232G DB_CAT: As Seen on TV DB_OP: Google Inc + https://globe.adsbexchange.com/?reg=N131 N10XG DB_CAT: As Seen on TV DB_OP: Google Inc + https://globe.adsbexchange.com/?reg=N131 N1910H DB_CAT: As Seen on TV DB_OP: Hallmark Cards Inc. + https://globe.adsbexchange.com/?reg=N131 N126HR DB_CAT: As Seen on TV DB_OP: Seminole Tribe of Florida + https://globe.adsbexchange.com/?reg=N131 N857ST DB_CAT: As Seen on TV DB_OP: Seminole Tribe of Florida + https://globe.adsbexchange.com/?reg=N131 N221DG DB_CAT: Don't you know who I am? DB_OP: David Geffen + https://globe.adsbexchange.com/?reg=N131 N100GN DB_CAT: As Seen on TV DB_OP: Fertitta Entertainment Holdings LLC + https://globe.adsbexchange.com/?reg=N131 N709DS DB_CAT: Don't you know who I am? DB_OP: Steve Ballmer + https://globe.adsbexchange.com/?reg=N131 N729KF DB_CAT: Don't you know who I am? DB_OP: Stan Kroenke + https://globe.adsbexchange.com/?reg=N131 N702F DB_CAT: Climate Crisis DB_OP: Station Casinos + https://globe.adsbexchange.com/?reg=N131 N162WC DB_CAT: Climate Crisis DB_OP: Washington Corp + https://globe.adsbexchange.com/?reg=N131 N988NC DB_CAT: As Seen on TV DB_OP: 21st Century Fox + https://globe.adsbexchange.com/?reg=N131 N900NC DB_CAT: As Seen on TV DB_OP: 21st Century Fox + https://globe.adsbexchange.com/?reg=N131 N898NC DB_CAT: As Seen on TV DB_OP: 21st Century Fox + https://globe.adsbexchange.com/?reg=N131 N435FG DB_CAT: Football DB_OP: Jacksonville Jaguars + https://globe.adsbexchange.com/?reg=N131 N360PZ DB_CAT: As Seen on TV DB_OP: City Electric Supply Company + https://globe.adsbexchange.com/?reg=N131 N378TP DB_CAT: Don't you know who I am? DB_OP: ETPC Aviation + https://globe.adsbexchange.com/?reg=N131 N773SD DB_CAT: Aerial Firefighter DB_OP: South Dakota Department of Transportatio + https://globe.adsbexchange.com/?reg=N131 N60TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N90TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N124TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N191TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N204TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N219TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N405TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N824TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N844TX DB_CAT: Police Forces DB_OP: Texas Department of Public Safety + https://globe.adsbexchange.com/?reg=N131 N1VA DB_CAT: Governments DB_OP: Virginia Department of Aviation + https://globe.adsbexchange.com/?reg=N131 N26VA DB_CAT: Police Forces DB_OP: Virginia State Police + https://globe.adsbexchange.com/?reg=N131 N305DK DB_CAT: Police Forces DB_OP: Washington State Patrol + https://globe.adsbexchange.com/?reg=N131 N357PN DB_CAT: Dogs with Jobs DB_OP: Washington State Department of Fish and + https://globe.adsbexchange.com/?reg=N131 N890SP DB_CAT: Police Forces DB_OP: West Virginia State Police + Duke Energy N218KF DB_CAT: Don't you know who I am? DB_OP: Stan Kroenke + Enterprise Car Rental N43PR DB_CAT: Climate Crisis DB_OP: Town and Country Food Markets + https://globe.adsbexchange.com/?reg=N604 N988H DB_CAT: As Seen on TV DB_OP: Honeywell International + https://globe.adsbexchange.com/?reg=N604 N456GA DB_CAT: As Seen on TV DB_OP: Hewlett-Packard + https://globe.adsbexchange.com/?reg=N604 N780TW DB_CAT: As Seen on TV DB_OP: IBM Corp + https://globe.adsbexchange.com/?reg=N604 N550JD DB_CAT: As Seen on TV DB_OP: Deere and Company + https://globe.adsbexchange.com/?reg=N604 N600JD DB_CAT: As Seen on TV DB_OP: John Deere & Company + https://globe.adsbexchange.com/?reg=N604 N800J DB_CAT: As Seen on TV DB_OP: Johnson & Johnson + https://globe.adsbexchange.com/?reg=N604 N400J DB_CAT: As Seen on TV DB_OP: Johnson & Johnson + https://globe.adsbexchange.com/?reg=N604 N500J DB_CAT: As Seen on TV DB_OP: Johnson & Johnson + https://globe.adsbexchange.com/?reg=N604 N600J DB_CAT: As Seen on TV DB_OP: Great Clips + https://globe.adsbexchange.com/?reg=N604 N661CH DB_CAT: As Seen on TV DB_OP: JP Morgan Chase Bank + https://globe.adsbexchange.com/?reg=N604 N662CH DB_CAT: As Seen on TV DB_OP: JP Morgan Chase Bank + https://globe.adsbexchange.com/?reg=N604 N601CH DB_CAT: As Seen on TV DB_OP: JP Morgan Chase Bank + https://globe.adsbexchange.com/?reg=N604 N804MS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N108MS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N336LS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N383LS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N623MS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N883LS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N885LS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N887LS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N889LS DB_CAT: As Seen on TV DB_OP: Las Vegas Sands Corp + https://globe.adsbexchange.com/?reg=N604 N9PF DB_CAT: Climate Crisis DB_OP: Private + https://globe.adsbexchange.com/?reg=N604 N270LE DB_CAT: As Seen on TV DB_OP: Liberty Mutual Insurance + https://globe.adsbexchange.com/?reg=N604 N45JE DB_CAT: As Seen on TV DB_OP: Liberty Mutual Insurance + https://globe.adsbexchange.com/?reg=N604 N650VC DB_CAT: As Seen on TV DB_OP: Lockheed Martin Corp + https://globe.adsbexchange.com/?reg=N604 N344RS DB_CAT: As Seen on TV DB_OP: Lockheed Martin Corp + https://globe.adsbexchange.com/?reg=N604 N359GS DB_CAT: As Seen on TV DB_OP: Lockheed Martin Corp + https://globe.adsbexchange.com/?reg=N604 N33LC DB_CAT: As Seen on TV DB_OP: Lowe's Companies + https://globe.adsbexchange.com/?reg=N604 N44LC DB_CAT: As Seen on TV DB_OP: Lowe's Companies + https://globe.adsbexchange.com/?reg=N604 N782MM DB_CAT: As Seen on TV DB_OP: Mandalay Resorts + https://globe.adsbexchange.com/?reg=N604 N781MM DB_CAT: As Seen on TV DB_OP: Mandalay Resorts + https://globe.adsbexchange.com/?reg=N604 N785MM DB_CAT: As Seen on TV DB_OP: Mandalay Resorts + https://globe.adsbexchange.com/?reg=N604 N721MM DB_CAT: As Seen on TV DB_OP: Mandalay Resorts + https://globe.adsbexchange.com/?reg=N604 N1967M DB_CAT: As Seen on TV DB_OP: McDonalds Corp + https://globe.adsbexchange.com/?reg=N604 N780RW DB_CAT: As Seen on TV DB_OP: IBM Corp + https://globe.adsbexchange.com/?reg=N604 N790J DB_CAT: As Seen on TV DB_OP: IBM Corp + https://globe.adsbexchange.com/?reg=N604 N30QJ DB_CAT: As Seen on TV DB_OP: Johnson & Johnson + https://globe.adsbexchange.com/?reg=N604 N60QJ DB_CAT: As Seen on TV DB_OP: Johnson & Johnson + https://globe.adsbexchange.com/?reg=N604 N610G DB_CAT: Special Forces DB_OP: Comco + https://globe.adsbexchange.com/?reg=N604 N226G DB_CAT: Special Forces DB_OP: Comco + https://globe.adsbexchange.com/?reg=N604 N475LC DB_CAT: As Seen on TV DB_OP: L-3 Harris + https://globe.adsbexchange.com/?reg=N604 N280PH DB_CAT: As Seen on TV DB_OP: General Motors + https://globe.adsbexchange.com/?reg=N604 N69972 DB_CAT: Historic DB_OP: Docs Friends + https://globe.adsbexchange.com/?reg=N604 N529B DB_CAT: Historic DB_OP: Commemorative Air Force + https://globe.adsbexchange.com/?reg=N604 N551HA DB_CAT: Distinctive DB_OP: Missile Defense Agency + https://globe.adsbexchange.com/?reg=N604 N9191 DB_CAT: Oxcart DB_OP: Bear Defence + https://globe.adsbexchange.com/?reg=N604 N488CR DB_CAT: Oxcart DB_OP: United States Army + https://globe.adsbexchange.com/?reg=N604 N159L DB_CAT: Oxcart DB_OP: United States Army + https://globe.adsbexchange.com/?reg=N604 N986HA DB_CAT: Special Forces DB_OP: USAF + https://globe.adsbexchange.com/?reg=N604 N997MG DB_CAT: Special Forces DB_OP: USAF + https://globe.adsbexchange.com/?reg=N604 N860TA DB_CAT: Hired Gun DB_OP: Top Aces Inc + https://globe.adsbexchange.com/?reg=N604 N856TA DB_CAT: Hired Gun DB_OP: Top Aces Inc + https://globe.adsbexchange.com/?reg=N604 N865TA DB_CAT: Hired Gun DB_OP: Top Aces Inc + https://globe.adsbexchange.com/?reg=N604 N858TA DB_CAT: Hired Gun DB_OP: Top Aces Inc + https://globe.adsbexchange.com/?reg=N604 N23NG DB_CAT: As Seen on TV DB_OP: Northrop Grumman + https://globe.adsbexchange.com/?reg=N604 N804X DB_CAT: Distinctive DB_OP: Northrop Gruman + https://globe.adsbexchange.com/?reg=N604 N552HA DB_CAT: Distinctive DB_OP: Missile Defense Agency + https://globe.adsbexchange.com/?reg=N604 N553HA DB_CAT: Distinctive DB_OP: Missile Defense Agency + https://globe.adsbexchange.com/?reg=N604 N331CL DB_CAT: Dogs with Jobs DB_OP: Massachusetts Institute Of Technology + https://globe.adsbexchange.com/?reg=N604 N757AF DB_CAT: Dictator Alert DB_OP: DJT Operations + https://globe.adsbexchange.com/?reg=N604 N444WT DB_CAT: Don't you know who I am? DB_OP: Matt Damon + https://globe.adsbexchange.com/?reg=N604 N1TS DB_CAT: Climate Crisis DB_OP: First Virtual Air II + https://globe.adsbexchange.com/?reg=N604 N2TS DB_CAT: Joe Cool DB_OP: Upland Aviation + https://globe.adsbexchange.com/?reg=N604 N818TH DB_CAT: As Seen on TV DB_OP: Tommy Hilfiger USA + https://globe.adsbexchange.com/?reg=N604 N992DC DB_CAT: Football DB_OP: Dallas Cowboys + https://globe.adsbexchange.com/?reg=N121 N822MK DB_CAT: As Seen on TV DB_OP: Merck Group + https://globe.adsbexchange.com/?reg=N121 N946MM DB_CAT: As Seen on TV DB_OP: Heathrow Enterprises + https://globe.adsbexchange.com/?reg=N121 N608RP DB_CAT: As Seen on TV DB_OP: Purina Petcare + https://globe.adsbexchange.com/?reg=N121 N533GV DB_CAT: As Seen on TV DB_OP: Netflix + https://globe.adsbexchange.com/?reg=N121 N535GV DB_CAT: As Seen on TV DB_OP: Netflix + https://globe.adsbexchange.com/?reg=N121 N6453 DB_CAT: As Seen on TV DB_OP: Nike Corporation + https://globe.adsbexchange.com/?reg=N121 N157NS DB_CAT: As Seen on TV DB_OP: Norfolk Southern Railway + https://globe.adsbexchange.com/?reg=N121 N158NS DB_CAT: As Seen on TV DB_OP: Norfolk Southern Railway + https://globe.adsbexchange.com/?reg=N121 N159NS DB_CAT: As Seen on TV DB_OP: Norfolk Southern Railway + https://globe.adsbexchange.com/?reg=N121 N4050 DB_CAT: As Seen on TV DB_OP: PayPal + https://globe.adsbexchange.com/?reg=N121 N910J DB_CAT: As Seen on TV DB_OP: PENN Entertainment + https://globe.adsbexchange.com/?reg=N121 N500PC DB_CAT: As Seen on TV DB_OP: Pepsico + https://globe.adsbexchange.com/?reg=N121 N502PC DB_CAT: As Seen on TV DB_OP: Pepsico + https://globe.adsbexchange.com/?reg=N121 N508PC DB_CAT: As Seen on TV DB_OP: Pepsico + https://globe.adsbexchange.com/?reg=N121 N3CP DB_CAT: As Seen on TV DB_OP: Pfizer + https://globe.adsbexchange.com/?reg=N121 N4CP DB_CAT: As Seen on TV DB_OP: Pfizer + https://globe.adsbexchange.com/?reg=N121 N5CP DB_CAT: As Seen on TV DB_OP: Pfizer + https://globe.adsbexchange.com/?reg=N121 N6CP DB_CAT: As Seen on TV DB_OP: Pfizer + https://globe.adsbexchange.com/?reg=N121 N1PG DB_CAT: As Seen on TV DB_OP: Pfizer + https://globe.adsbexchange.com/?reg=N121 N2PG DB_CAT: As Seen on TV DB_OP: Procter & Gamble + https://globe.adsbexchange.com/?reg=N121 N6PG DB_CAT: As Seen on TV DB_OP: Procter & Gamble + https://globe.adsbexchange.com/?reg=N121 N7PG DB_CAT: As Seen on TV DB_OP: Procter & Gamble + https://globe.adsbexchange.com/?reg=N121 N82A DB_CAT: As Seen on TV DB_OP: Prudential Insurance Co of America + https://globe.adsbexchange.com/?reg=N121 N30GJ DB_CAT: As Seen on TV DB_OP: Publix Supermarkets + https://globe.adsbexchange.com/?reg=N121 N929GW DB_CAT: As Seen on TV DB_OP: Publix Supermarkets + https://globe.adsbexchange.com/?reg=N121 N89PX DB_CAT: As Seen on TV DB_OP: Publix Supermarkets + https://globe.adsbexchange.com/?reg=N121 N50NP DB_CAT: As Seen on TV DB_OP: Nestle Purina Petcare + https://globe.adsbexchange.com/?reg=N121 N886WT DB_CAT: As Seen on TV DB_OP: Qualcomm + https://globe.adsbexchange.com/?reg=N121 N887WT DB_CAT: As Seen on TV DB_OP: Qualcomm + https://globe.adsbexchange.com/?reg=N121 N661GT DB_CAT: As Seen on TV DB_OP: Rhys Vineyards + https://globe.adsbexchange.com/?reg=N121 N167TV DB_CAT: Don't you know who I am? DB_OP: Jeffrey Vinik + https://globe.adsbexchange.com/?reg=N121 N85D DB_CAT: As Seen on TV DB_OP: Dole Foods + https://globe.adsbexchange.com/?reg=N121 N650MN DB_CAT: Don't you know who I am? DB_OP: Rory McIlroy + https://globe.adsbexchange.com/?reg=N121 N888TY DB_CAT: Climate Crisis DB_OP: BB Five Inc + Netflix N1 DB_CAT: Vanity Plate DB_OP: Federal Aviation Administration + Netflix N16 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N13 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N14 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N17 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N11 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N12 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N47 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N66 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N67 DB_CAT: Vanity Plate DB_OP: Federal Aviation Administration + Netflix N68 DB_CAT: Vanity Plate DB_OP: Federal Aviation Administration + Netflix N69 DB_CAT: Vanity Plate DB_OP: Federal Aviation Administration + Netflix N70 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N71 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N72 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N73 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N75 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N76 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N77 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N78 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N79 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N80 DB_CAT: Vanity Plate DB_OP: Federal Aviation Administration + Netflix N81 DB_CAT: Vanity Plate DB_OP: Federal Aviation Administration + Netflix N83 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N84 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N85 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N86 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N87 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N88 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N89 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + Netflix N90 DB_CAT: Dogs with Jobs DB_OP: Federal Aviation Administration + https://globe.adsbexchange.com/?reg=N288 N288DX DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N648DX DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N899DX DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N120QD DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N149QD DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N338QD DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N399SA DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N567QD DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N589QD DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N687QD DB_CAT: As Seen on TV DB_OP: Quest Diagnostics + https://globe.adsbexchange.com/?reg=N288 N48RT DB_CAT: As Seen on TV DB_OP: Raytheon Systems + https://globe.adsbexchange.com/?reg=N288 N510SR DB_CAT: Football DB_OP: Miami Dolphins + https://globe.adsbexchange.com/?reg=N288 N979JW DB_CAT: As Seen on TV DB_OP: S C Johnson & Son + https://globe.adsbexchange.com/?reg=N288 N989JW DB_CAT: As Seen on TV DB_OP: S C Johnson & Son + https://globe.adsbexchange.com/?reg=N288 N2E DB_CAT: As Seen on TV DB_OP: Snap Inc + https://globe.adsbexchange.com/?reg=N288 N272BG DB_CAT: Don't you know who I am? DB_OP: Falcon Landing LLC + https://globe.adsbexchange.com/?reg=N288 N502SX DB_CAT: Don't you know who I am? DB_OP: Falcon Landing LLC + https://globe.adsbexchange.com/?reg=N288 N154TS DB_CAT: Don't you know who I am? DB_OP: Falcon Aviation Holdings + https://globe.adsbexchange.com/?reg=N288 N19HS DB_CAT: As Seen on TV DB_OP: Starbucks + https://globe.adsbexchange.com/?reg=N288 N721L DB_CAT: As Seen on TV DB_OP: Starbucks + https://globe.adsbexchange.com/?reg=N288 N484EM DB_CAT: As Seen on TV DB_OP: Target Corporation + https://globe.adsbexchange.com/?reg=N288 N45GX DB_CAT: As Seen on TV DB_OP: Texas Instruments + https://globe.adsbexchange.com/?reg=N288 N84HD DB_CAT: As Seen on TV DB_OP: Home Depot + https://globe.adsbexchange.com/?reg=N288 N96UA DB_CAT: As Seen on TV DB_OP: Under Armour Corporation + https://globe.adsbexchange.com/?reg=N288 N844UP DB_CAT: Vanity Plate DB_OP: Union Pacific Railroad + https://globe.adsbexchange.com/?reg=N288 N901X DB_CAT: As Seen on TV DB_OP: United States Steel Corp + https://globe.adsbexchange.com/?reg=N288 N838MF DB_CAT: Don't you know who I am? DB_OP: Ronald Perelman + https://globe.adsbexchange.com/?reg=N288 N411NB DB_CAT: Don't you know who I am? DB_OP: Vivek Ramaswamy + United States Steel Corp N658HC DB_CAT: PIA DB_OP: Group Holdings Aviation + https://globe.adsbexchange.com/?reg=N434 N954GA DB_CAT: As Seen on TV DB_OP: Gulfstream Aerospace Corp + https://globe.adsbexchange.com/?reg=N434 N57UH DB_CAT: As Seen on TV DB_OP: United Healthcare Services + https://globe.adsbexchange.com/?reg=N434 N623CT DB_CAT: As Seen on TV DB_OP: United Healthcare Services + https://globe.adsbexchange.com/?reg=N434 N917VZ DB_CAT: As Seen on TV DB_OP: Verizon Corporate Services + https://globe.adsbexchange.com/?reg=N434 N74VZ DB_CAT: As Seen on TV DB_OP: Verizon Corporate Services + https://globe.adsbexchange.com/?reg=N434 N76VZ DB_CAT: As Seen on TV DB_OP: Verizon Corporate Services + https://globe.adsbexchange.com/?reg=N434 N476V DB_CAT: As Seen on TV DB_OP: Visa + https://globe.adsbexchange.com/?reg=N434 N358V DB_CAT: As Seen on TV DB_OP: Visa + https://globe.adsbexchange.com/?reg=N434 N15DP DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N16CP DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N183CM DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N209MD DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N745KD DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N313BH DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N403LS DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N45GH DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N45HK DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N45VA DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N802AK DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N986BL DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N990WA DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N17ZP DB_CAT: As Seen on TV DB_OP: Walmart + https://globe.adsbexchange.com/?reg=N434 N1911W DB_CAT: As Seen on TV DB_OP: Whirlpool Corp + https://globe.adsbexchange.com/?reg=N434 N88WR DB_CAT: As Seen on TV DB_OP: Wynn Resorts + https://globe.adsbexchange.com/?reg=N434 N188WR DB_CAT: As Seen on TV DB_OP: Wynn Resorts + https://globe.adsbexchange.com/?reg=N434 N8000E DB_CAT: PIA DB_OP: Emerson Electric + https://globe.adsbexchange.com/?reg=N434 N8200E DB_CAT: PIA DB_OP: Emerson Electric + https://globe.adsbexchange.com/?reg=N434 N645FD DB_CAT: As Seen on TV DB_OP: Family Dollar + https://globe.adsbexchange.com/?reg=N434 N445FD DB_CAT: As Seen on TV DB_OP: Family Dollar + https://globe.adsbexchange.com/?reg=N434 N83M DB_CAT: As Seen on TV DB_OP: 3M Company + https://globe.adsbexchange.com/?reg=N434 N93M DB_CAT: As Seen on TV DB_OP: 3M Company + https://globe.adsbexchange.com/?reg=N434 N57SN DB_CAT: As Seen on TV DB_OP: Sony Aviation + https://globe.adsbexchange.com/?reg=N434 N60SN DB_CAT: As Seen on TV DB_OP: Sony Aviation + https://globe.adsbexchange.com/?reg=N434 N58CX DB_CAT: As Seen on TV DB_OP: CSX Transportation + https://globe.adsbexchange.com/?reg=N434 N807DC DB_CAT: As Seen on TV DB_OP: Danaher Corp + https://globe.adsbexchange.com/?reg=N434 N272BC DB_CAT: As Seen on TV DB_OP: Bissell Inc + https://globe.adsbexchange.com/?reg=N434 N543GL DB_CAT: As Seen on TV DB_OP: Skechers USA + https://globe.adsbexchange.com/?reg=N434 N540LF DB_CAT: As Seen on TV DB_OP: Gulfstream Aerospace Corp + https://globe.adsbexchange.com/?reg=N434 N613LF DB_CAT: Don't you know who I am? DB_OP: Frank Lowry + https://globe.adsbexchange.com/?reg=N836 N1F DB_CAT: Vanity Plate DB_OP: Friedkin Intl + Boeing 747 Global SuperTanker N744ST DB_CAT: Dogs with Jobs DB_OP: National Airlines + Boeing 747 Global SuperTanker N936CA DB_CAT: Hired Gun DB_OP: National Airlines + Gulfstream G600 (3 zone) N600GS DB_CAT: As Seen on TV DB_OP: Gulfstream Aerospace Corp + Global 7500 N457AD DB_CAT: As Seen on TV DB_OP: Dangote Group + +--- MISSING (NEED TO ADD) --- + https://globe.adsbexchange.com/?reg=N270 N2702 TYPE: + https://globe.adsbexchange.com/?reg=N270 N551AV TYPE: + https://globe.adsbexchange.com/?reg=N270 N556AV TYPE: + https://globe.adsbexchange.com/?reg=N270 N285AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N1AL TYPE: + https://globe.adsbexchange.com/?reg=N270 N8AL TYPE: + https://globe.adsbexchange.com/?reg=N270 N550AA TYPE: + https://globe.adsbexchange.com/?reg=N270 N550GW TYPE: + https://globe.adsbexchange.com/?reg=N270 N652GB TYPE: + https://globe.adsbexchange.com/?reg=N270 N81GK TYPE: + https://globe.adsbexchange.com/?reg=N270 N689BG TYPE: + https://globe.adsbexchange.com/?reg=N270 N650XF TYPE: + https://globe.adsbexchange.com/?reg=N270 N775E TYPE: + https://globe.adsbexchange.com/?reg=N270 N900SB TYPE: + https://globe.adsbexchange.com/?reg=N270 N372BP TYPE: + https://globe.adsbexchange.com/?reg=N270 N378TM TYPE: + https://globe.adsbexchange.com/?reg=N270 N235BH TYPE: + https://globe.adsbexchange.com/?reg=N270 N700YB TYPE: + https://globe.adsbexchange.com/?reg=N270 N737JB TYPE: + https://globe.adsbexchange.com/?reg=N270 N550BG TYPE: + https://globe.adsbexchange.com/?reg=N270 N3788B TYPE: + https://globe.adsbexchange.com/?reg=N270 N1777M TYPE: + https://globe.adsbexchange.com/?reg=N270 N10199 TYPE: + https://globe.adsbexchange.com/?reg=N270 N550TB TYPE: + https://globe.adsbexchange.com/?reg=N270 N331BN TYPE: + https://globe.adsbexchange.com/?reg=N270 N459BN TYPE: + https://globe.adsbexchange.com/?reg=N270 N721CF TYPE: + https://globe.adsbexchange.com/?reg=N270 N75KX TYPE: + https://globe.adsbexchange.com/?reg=N270 N1902C TYPE: + https://globe.adsbexchange.com/?reg=N270 N50VC TYPE: + https://globe.adsbexchange.com/?reg=N270 N650C TYPE: + https://globe.adsbexchange.com/?reg=N270 N793CG TYPE: + https://globe.adsbexchange.com/?reg=N270 N793MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N472K TYPE: + https://globe.adsbexchange.com/?reg=N270 N60TE TYPE: + https://globe.adsbexchange.com/?reg=N270 N80TE TYPE: + https://globe.adsbexchange.com/?reg=N270 N1KA TYPE: + https://globe.adsbexchange.com/?reg=N270 N901FH TYPE: + https://globe.adsbexchange.com/?reg=N270 N902FH TYPE: + https://globe.adsbexchange.com/?reg=N270 N10274 TYPE: + https://globe.adsbexchange.com/?reg=N270 N820CA TYPE: + https://globe.adsbexchange.com/?reg=N270 N863CA TYPE: + https://globe.adsbexchange.com/?reg=N270 N824CA TYPE: + https://globe.adsbexchange.com/?reg=N270 N790CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N405CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N621AR TYPE: + https://globe.adsbexchange.com/?reg=N270 N792CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N794CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N796CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N795CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N665P TYPE: + https://globe.adsbexchange.com/?reg=N270 N668P TYPE: + https://globe.adsbexchange.com/?reg=N270 N660P TYPE: + https://globe.adsbexchange.com/?reg=N270 N50KC TYPE: + https://globe.adsbexchange.com/?reg=N270 N590BA TYPE: + https://globe.adsbexchange.com/?reg=N270 N297BA TYPE: + https://globe.adsbexchange.com/?reg=N270 N650AL TYPE: + https://globe.adsbexchange.com/?reg=N270 N616RK TYPE: + https://globe.adsbexchange.com/?reg=N270 N996GA TYPE: + https://globe.adsbexchange.com/?reg=N270 N977GA TYPE: + https://globe.adsbexchange.com/?reg=N270 N313CG TYPE: + https://globe.adsbexchange.com/?reg=N270 N1789M TYPE: + https://globe.adsbexchange.com/?reg=N270 N639CS TYPE: + https://globe.adsbexchange.com/?reg=N270 N738A TYPE: + https://globe.adsbexchange.com/?reg=N270 N878VF TYPE: + https://globe.adsbexchange.com/?reg=N270 N305DQ TYPE: + https://globe.adsbexchange.com/?reg=N270 N425HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N608WM TYPE: + https://globe.adsbexchange.com/?reg=N270 N897WM TYPE: + https://globe.adsbexchange.com/?reg=N270 N459WM TYPE: + https://globe.adsbexchange.com/?reg=N270 N417C TYPE: + https://globe.adsbexchange.com/?reg=N270 N718MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N711SW TYPE: + https://globe.adsbexchange.com/?reg=N270 N595TG TYPE: + https://globe.adsbexchange.com/?reg=N270 N117TF TYPE: + https://globe.adsbexchange.com/?reg=N270 N880GC TYPE: + https://globe.adsbexchange.com/?reg=N270 N247GC TYPE: + https://globe.adsbexchange.com/?reg=N270 N80EM TYPE: + https://globe.adsbexchange.com/?reg=N270 N82EM TYPE: + https://globe.adsbexchange.com/?reg=N270 N136EM TYPE: + https://globe.adsbexchange.com/?reg=N270 N421SZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N928SZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N421AL TYPE: + https://globe.adsbexchange.com/?reg=N270 N750KD TYPE: + https://globe.adsbexchange.com/?reg=N270 N831FR TYPE: + https://globe.adsbexchange.com/?reg=N270 N102WG TYPE: + https://globe.adsbexchange.com/?reg=N270 N773MJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N32MJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N222MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N688MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N1NE TYPE: + https://globe.adsbexchange.com/?reg=N270 N19HT TYPE: + https://globe.adsbexchange.com/?reg=N270 N1759C TYPE: + https://globe.adsbexchange.com/?reg=N270 N785QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N257DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N256DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N251DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N252DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N254DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N255DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N258DV TYPE: + https://globe.adsbexchange.com/?reg=N270 N555MZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N711LS TYPE: + https://globe.adsbexchange.com/?reg=N270 N524EA TYPE: + https://globe.adsbexchange.com/?reg=N270 N115MH TYPE: + https://globe.adsbexchange.com/?reg=N270 N10MV TYPE: + https://globe.adsbexchange.com/?reg=N270 N6MV TYPE: + https://globe.adsbexchange.com/?reg=N270 N331AB TYPE: + https://globe.adsbexchange.com/?reg=N270 N238MH TYPE: + https://globe.adsbexchange.com/?reg=N270 N811LS TYPE: + https://globe.adsbexchange.com/?reg=N270 N801DM TYPE: + https://globe.adsbexchange.com/?reg=N270 N106TD TYPE: + https://globe.adsbexchange.com/?reg=N270 N107TD TYPE: + https://globe.adsbexchange.com/?reg=N270 N38AD TYPE: + https://globe.adsbexchange.com/?reg=N270 N388JR TYPE: + https://globe.adsbexchange.com/?reg=N270 N477GJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N560MT TYPE: + https://globe.adsbexchange.com/?reg=N270 N247WE TYPE: + https://globe.adsbexchange.com/?reg=N270 N468KL TYPE: + https://globe.adsbexchange.com/?reg=N270 N612MJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N329SH TYPE: + https://globe.adsbexchange.com/?reg=N270 N229BK TYPE: + https://globe.adsbexchange.com/?reg=N270 N138DE TYPE: + https://globe.adsbexchange.com/?reg=N270 N1DE TYPE: + https://globe.adsbexchange.com/?reg=N270 N3DE TYPE: + https://globe.adsbexchange.com/?reg=N270 N500DE TYPE: + https://globe.adsbexchange.com/?reg=N270 N400DH TYPE: + https://globe.adsbexchange.com/?reg=N270 N1RH TYPE: + https://globe.adsbexchange.com/?reg=N270 N508RH TYPE: + https://globe.adsbexchange.com/?reg=N270 N141SH TYPE: + https://globe.adsbexchange.com/?reg=N270 N60GH TYPE: + https://globe.adsbexchange.com/?reg=N270 N3RC TYPE: + https://globe.adsbexchange.com/?reg=N270 N15VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N25VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N43VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N46VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N47VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N49VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N67VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N70VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N87VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N92VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N98AC TYPE: + https://globe.adsbexchange.com/?reg=N270 N8TA TYPE: + https://globe.adsbexchange.com/?reg=N270 N622GK TYPE: + https://globe.adsbexchange.com/?reg=N270 N901SG TYPE: + https://globe.adsbexchange.com/?reg=N270 N200BA TYPE: + https://globe.adsbexchange.com/?reg=N270 N15QB TYPE: + https://globe.adsbexchange.com/?reg=N270 N669T TYPE: + https://globe.adsbexchange.com/?reg=N270 N500RP TYPE: + https://globe.adsbexchange.com/?reg=N270 N512GD TYPE: + https://globe.adsbexchange.com/?reg=N270 N510GD TYPE: + https://globe.adsbexchange.com/?reg=N270 N559LC TYPE: + https://globe.adsbexchange.com/?reg=N270 N682RW TYPE: + https://globe.adsbexchange.com/?reg=N270 N17NY TYPE: + https://globe.adsbexchange.com/?reg=N270 N78SD TYPE: + https://globe.adsbexchange.com/?reg=N270 N604JJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N703BG TYPE: + https://globe.adsbexchange.com/?reg=N270 N800JM TYPE: + https://globe.adsbexchange.com/?reg=N270 N757CJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N305DG TYPE: + https://globe.adsbexchange.com/?reg=N270 N810GT TYPE: + https://globe.adsbexchange.com/?reg=N270 N518GS TYPE: + https://globe.adsbexchange.com/?reg=N270 N714JB TYPE: + https://globe.adsbexchange.com/?reg=N270 N688JC TYPE: + https://globe.adsbexchange.com/?reg=N270 N845JS TYPE: + https://globe.adsbexchange.com/?reg=N270 N502JB TYPE: + https://globe.adsbexchange.com/?reg=N270 N707JT TYPE: + https://globe.adsbexchange.com/?reg=N270 N492JT TYPE: + https://globe.adsbexchange.com/?reg=N270 N327JT TYPE: + https://globe.adsbexchange.com/?reg=N270 N500CE TYPE: + https://globe.adsbexchange.com/?reg=N270 N768JJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N510CX TYPE: + https://globe.adsbexchange.com/?reg=N270 N1980K TYPE: + https://globe.adsbexchange.com/?reg=N270 N69FH TYPE: + https://globe.adsbexchange.com/?reg=N270 N989DM TYPE: + https://globe.adsbexchange.com/?reg=N270 N600CK TYPE: + https://globe.adsbexchange.com/?reg=N270 N365WW TYPE: + https://globe.adsbexchange.com/?reg=N270 N33055 TYPE: + https://globe.adsbexchange.com/?reg=N270 N220F TYPE: + https://globe.adsbexchange.com/?reg=N270 N1013 TYPE: + https://globe.adsbexchange.com/?reg=N270 N877H TYPE: + https://globe.adsbexchange.com/?reg=N270 N405TK TYPE: + https://globe.adsbexchange.com/?reg=N270 N305PB TYPE: + https://globe.adsbexchange.com/?reg=N270 N700KS TYPE: + https://globe.adsbexchange.com/?reg=N270 N225LH TYPE: + https://globe.adsbexchange.com/?reg=N270 N1073S TYPE: + https://globe.adsbexchange.com/?reg=N270 N906V TYPE: + https://globe.adsbexchange.com/?reg=N270 N52437 TYPE: + https://globe.adsbexchange.com/?reg=N270 N1263S TYPE: + https://globe.adsbexchange.com/?reg=N270 N407SA TYPE: + https://globe.adsbexchange.com/?reg=N270 N157SA TYPE: + https://globe.adsbexchange.com/?reg=N270 N160SA TYPE: + https://globe.adsbexchange.com/?reg=N270 N477GF TYPE: + https://globe.adsbexchange.com/?reg=N270 N5329S TYPE: + https://globe.adsbexchange.com/?reg=N270 N1867 TYPE: + https://globe.adsbexchange.com/?reg=N270 N574ST TYPE: + https://globe.adsbexchange.com/?reg=N270 N8370Q TYPE: + https://globe.adsbexchange.com/?reg=N270 N246CC TYPE: + https://globe.adsbexchange.com/?reg=N270 N145PL TYPE: + https://globe.adsbexchange.com/?reg=N270 N1323Y TYPE: + https://globe.adsbexchange.com/?reg=N270 N70715 TYPE: + https://globe.adsbexchange.com/?reg=N270 N303GV TYPE: + https://globe.adsbexchange.com/?reg=N270 N20786 TYPE: + https://globe.adsbexchange.com/?reg=N270 N4730E TYPE: + https://globe.adsbexchange.com/?reg=N270 N840AK TYPE: + https://globe.adsbexchange.com/?reg=N270 N905AK TYPE: + https://globe.adsbexchange.com/?reg=N270 N42033 TYPE: + https://globe.adsbexchange.com/?reg=N270 N125FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N8460C TYPE: + https://globe.adsbexchange.com/?reg=N270 N82735 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7063J TYPE: + https://globe.adsbexchange.com/?reg=N270 N7023 TYPE: + https://globe.adsbexchange.com/?reg=N270 N607TC TYPE: + https://globe.adsbexchange.com/?reg=N270 N911NT TYPE: + https://globe.adsbexchange.com/?reg=N270 N6705H TYPE: + https://globe.adsbexchange.com/?reg=N270 N911AA TYPE: + https://globe.adsbexchange.com/?reg=N270 N909AK TYPE: + https://globe.adsbexchange.com/?reg=N270 N90918 TYPE: + https://globe.adsbexchange.com/?reg=N270 N88AK TYPE: + https://globe.adsbexchange.com/?reg=N270 N8717Q TYPE: + https://globe.adsbexchange.com/?reg=N270 N82732 TYPE: + https://globe.adsbexchange.com/?reg=N270 N82736 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7761D TYPE: + https://globe.adsbexchange.com/?reg=N270 N7326S TYPE: + https://globe.adsbexchange.com/?reg=N270 N7695S TYPE: + https://globe.adsbexchange.com/?reg=N270 N7196H TYPE: + https://globe.adsbexchange.com/?reg=N270 N7183C TYPE: + https://globe.adsbexchange.com/?reg=N270 N714NK TYPE: + https://globe.adsbexchange.com/?reg=N270 N7085 TYPE: + https://globe.adsbexchange.com/?reg=N270 N70713 TYPE: + https://globe.adsbexchange.com/?reg=N270 N70714 TYPE: + https://globe.adsbexchange.com/?reg=N270 N106WT TYPE: + https://globe.adsbexchange.com/?reg=N270 N1155W TYPE: + https://globe.adsbexchange.com/?reg=N270 N1386A TYPE: + https://globe.adsbexchange.com/?reg=N270 N2400S TYPE: + https://globe.adsbexchange.com/?reg=N270 N270WC TYPE: + https://globe.adsbexchange.com/?reg=N270 N3330D TYPE: + https://globe.adsbexchange.com/?reg=N270 N34FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N4151T TYPE: + https://globe.adsbexchange.com/?reg=N270 N4387Z TYPE: + https://globe.adsbexchange.com/?reg=N270 N54741 TYPE: + https://globe.adsbexchange.com/?reg=N270 N6987B TYPE: + https://globe.adsbexchange.com/?reg=N270 N7040 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7041 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7046 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7051 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7052 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7054 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7055 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7056 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7058 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7059 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7067 TYPE: + https://globe.adsbexchange.com/?reg=N270 N922AZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N207KQ TYPE: + https://globe.adsbexchange.com/?reg=N270 N1816R TYPE: + https://globe.adsbexchange.com/?reg=N270 N61298 TYPE: + https://globe.adsbexchange.com/?reg=N270 N3037Q TYPE: + https://globe.adsbexchange.com/?reg=N270 N761EZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N77HD TYPE: + https://globe.adsbexchange.com/?reg=N270 N390SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N8125N TYPE: + https://globe.adsbexchange.com/?reg=N270 N524SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N523SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N459DF TYPE: + https://globe.adsbexchange.com/?reg=N270 N461DF TYPE: + https://globe.adsbexchange.com/?reg=N270 N463DF TYPE: + https://globe.adsbexchange.com/?reg=N270 N20CA TYPE: + https://globe.adsbexchange.com/?reg=N270 N30CA TYPE: + https://globe.adsbexchange.com/?reg=N270 N21FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N22FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N23FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N24FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N25FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N26FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N28FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N36FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N37FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N137HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N139HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N153HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N156HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N511HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N441HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N443HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N202HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N974HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N975HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N976HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N978HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N979HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N981HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N982HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N983HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N984HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N985HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N988HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N617HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N485DF TYPE: + https://globe.adsbexchange.com/?reg=N270 N161SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N328SF TYPE: + https://globe.adsbexchange.com/?reg=N270 N4211C TYPE: + https://globe.adsbexchange.com/?reg=N270 N959AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N202SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N203SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N205SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N185CC TYPE: + https://globe.adsbexchange.com/?reg=N270 N93827 TYPE: + https://globe.adsbexchange.com/?reg=N270 N105SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N107SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N108SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N1903A TYPE: + https://globe.adsbexchange.com/?reg=N270 N1SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N2SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N6SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N51SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N419FW TYPE: + https://globe.adsbexchange.com/?reg=N270 N600FC TYPE: + https://globe.adsbexchange.com/?reg=N270 N106FW TYPE: + https://globe.adsbexchange.com/?reg=N270 N267HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N773HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N610HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N91HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N107FC TYPE: + https://globe.adsbexchange.com/?reg=N270 N155FC TYPE: + https://globe.adsbexchange.com/?reg=N270 N706HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N280HG TYPE: + https://globe.adsbexchange.com/?reg=N270 N290MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N297MH TYPE: + https://globe.adsbexchange.com/?reg=N270 N266MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N251MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N252MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N256MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N258MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N271MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N429LC TYPE: + https://globe.adsbexchange.com/?reg=N270 N908SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N921SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N922SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N924SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N925SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N926SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N927SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N930SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N940SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N24NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N25NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N26NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N121TD TYPE: + https://globe.adsbexchange.com/?reg=N270 N35945 TYPE: + https://globe.adsbexchange.com/?reg=N270 N4131Q TYPE: + https://globe.adsbexchange.com/?reg=N270 N551SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N661SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N771SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N881SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N6484A TYPE: + https://globe.adsbexchange.com/?reg=N270 N751LL TYPE: + https://globe.adsbexchange.com/?reg=N270 N831LL TYPE: + https://globe.adsbexchange.com/?reg=N270 N971LL TYPE: + https://globe.adsbexchange.com/?reg=N270 N981LL TYPE: + https://globe.adsbexchange.com/?reg=N270 N991LL TYPE: + https://globe.adsbexchange.com/?reg=N270 N54SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N507SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N193SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N407SS TYPE: + https://globe.adsbexchange.com/?reg=N270 N171SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N231SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N996CS TYPE: + https://globe.adsbexchange.com/?reg=N270 N2231E TYPE: + https://globe.adsbexchange.com/?reg=N270 N227SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N1921F TYPE: + https://globe.adsbexchange.com/?reg=N270 N23540 TYPE: + https://globe.adsbexchange.com/?reg=N270 N600HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N650HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N670HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N870HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N900HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N940HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N950HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N980HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N10SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N45SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N46SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N421WJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N148KY TYPE: + https://globe.adsbexchange.com/?reg=N270 N723KY TYPE: + https://globe.adsbexchange.com/?reg=N270 N8237B TYPE: + https://globe.adsbexchange.com/?reg=N270 N282SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N283SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N5175E TYPE: + https://globe.adsbexchange.com/?reg=N270 N64034 TYPE: + https://globe.adsbexchange.com/?reg=N270 N9750L TYPE: + https://globe.adsbexchange.com/?reg=N270 N508SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N354SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N355SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N356SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N357SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N918SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N269SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N810SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N101AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N232AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N241AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N252AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N261AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N262AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N281AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N302AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N382AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N430M TYPE: + https://globe.adsbexchange.com/?reg=N270 N522AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N67183 TYPE: + https://globe.adsbexchange.com/?reg=N270 N811AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N812AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N904HB TYPE: + https://globe.adsbexchange.com/?reg=N270 N880WS TYPE: + https://globe.adsbexchange.com/?reg=N270 N5339N TYPE: + https://globe.adsbexchange.com/?reg=N270 N61368 TYPE: + https://globe.adsbexchange.com/?reg=N270 N185SL TYPE: + https://globe.adsbexchange.com/?reg=N270 N407TN TYPE: + https://globe.adsbexchange.com/?reg=N270 N9494N TYPE: + https://globe.adsbexchange.com/?reg=N270 N985MF TYPE: + https://globe.adsbexchange.com/?reg=N270 N125MD TYPE: + https://globe.adsbexchange.com/?reg=N270 N9111G TYPE: + https://globe.adsbexchange.com/?reg=N270 N902MD TYPE: + https://globe.adsbexchange.com/?reg=N270 N903MD TYPE: + https://globe.adsbexchange.com/?reg=N270 N6340F TYPE: + https://globe.adsbexchange.com/?reg=N270 N891TD TYPE: + https://globe.adsbexchange.com/?reg=N270 N1655M TYPE: + https://globe.adsbexchange.com/?reg=N270 N9461Z TYPE: + https://globe.adsbexchange.com/?reg=N270 N733XN TYPE: + https://globe.adsbexchange.com/?reg=N270 N6275S TYPE: + https://globe.adsbexchange.com/?reg=N270 N5101U TYPE: + https://globe.adsbexchange.com/?reg=N270 N2463B TYPE: + https://globe.adsbexchange.com/?reg=N270 N111SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N312ST TYPE: + https://globe.adsbexchange.com/?reg=N270 N4617E TYPE: + https://globe.adsbexchange.com/?reg=N270 N55MN TYPE: + https://globe.adsbexchange.com/?reg=N270 N14MN TYPE: + https://globe.adsbexchange.com/?reg=N270 N16MN TYPE: + https://globe.adsbexchange.com/?reg=N270 N105NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N125NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N145NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N155NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N205NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N528NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N529NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N605NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N705NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N805NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N905NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N70MN TYPE: + https://globe.adsbexchange.com/?reg=N270 N112SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N114SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N115SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N118SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N119SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N5897E TYPE: + https://globe.adsbexchange.com/?reg=N270 N28SM TYPE: + https://globe.adsbexchange.com/?reg=N270 N30SM TYPE: + https://globe.adsbexchange.com/?reg=N270 N350MS TYPE: + https://globe.adsbexchange.com/?reg=N270 N351MS TYPE: + https://globe.adsbexchange.com/?reg=N270 N956SM TYPE: + https://globe.adsbexchange.com/?reg=N270 N81MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N83MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N84MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N90MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N91MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N92MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N93MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N94MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N95MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N96MP TYPE: + https://globe.adsbexchange.com/?reg=N270 N128VT TYPE: + https://globe.adsbexchange.com/?reg=N270 N338MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N402MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N447MA TYPE: + https://globe.adsbexchange.com/?reg=N270 N42178 TYPE: + https://globe.adsbexchange.com/?reg=N270 N368M TYPE: + https://globe.adsbexchange.com/?reg=N270 N4622E TYPE: + https://globe.adsbexchange.com/?reg=N270 N151HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N1604Z TYPE: + https://globe.adsbexchange.com/?reg=N270 N1664R TYPE: + https://globe.adsbexchange.com/?reg=N270 N28KP TYPE: + https://globe.adsbexchange.com/?reg=N270 N384M TYPE: + https://globe.adsbexchange.com/?reg=N270 N4644Y TYPE: + https://globe.adsbexchange.com/?reg=N270 N6110A TYPE: + https://globe.adsbexchange.com/?reg=N270 N61CV TYPE: + https://globe.adsbexchange.com/?reg=N270 N6690 TYPE: + https://globe.adsbexchange.com/?reg=N270 N6962C TYPE: + https://globe.adsbexchange.com/?reg=N270 N8862Y TYPE: + https://globe.adsbexchange.com/?reg=N270 N84NE TYPE: + https://globe.adsbexchange.com/?reg=N270 N373NE TYPE: + https://globe.adsbexchange.com/?reg=N270 N575NE TYPE: + https://globe.adsbexchange.com/?reg=N270 N2383L TYPE: + https://globe.adsbexchange.com/?reg=N270 N777NV TYPE: + https://globe.adsbexchange.com/?reg=N270 N777NX TYPE: + https://globe.adsbexchange.com/?reg=N270 N711NV TYPE: + https://globe.adsbexchange.com/?reg=N270 N212DF TYPE: + https://globe.adsbexchange.com/?reg=N270 N407FG TYPE: + https://globe.adsbexchange.com/?reg=N270 N407JS TYPE: + https://globe.adsbexchange.com/?reg=N270 N366NH TYPE: + https://globe.adsbexchange.com/?reg=N270 N366SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N110NJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N4NJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N575NM TYPE: + https://globe.adsbexchange.com/?reg=N270 N91GF TYPE: + https://globe.adsbexchange.com/?reg=N270 N605SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N607SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N11SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N13SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N16SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N17SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N18SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N19SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N20SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N129SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N174SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N201NY TYPE: + https://globe.adsbexchange.com/?reg=N270 N224SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N749SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N605 TYPE: + https://globe.adsbexchange.com/?reg=N270 N651SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N103NC TYPE: + https://globe.adsbexchange.com/?reg=N270 N350NC TYPE: + https://globe.adsbexchange.com/?reg=N270 N3521K TYPE: + https://globe.adsbexchange.com/?reg=N270 N370NC TYPE: + https://globe.adsbexchange.com/?reg=N270 N42058 TYPE: + https://globe.adsbexchange.com/?reg=N270 N407NC TYPE: + https://globe.adsbexchange.com/?reg=N270 N421NC TYPE: + https://globe.adsbexchange.com/?reg=N270 N6492G TYPE: + https://globe.adsbexchange.com/?reg=N270 N735AX TYPE: + https://globe.adsbexchange.com/?reg=N270 N735DN TYPE: + https://globe.adsbexchange.com/?reg=N270 N735ED TYPE: + https://globe.adsbexchange.com/?reg=N270 N735EK TYPE: + https://globe.adsbexchange.com/?reg=N270 N800NC TYPE: + https://globe.adsbexchange.com/?reg=N270 N9542W TYPE: + https://globe.adsbexchange.com/?reg=N270 N22593 TYPE: + https://globe.adsbexchange.com/?reg=N270 N193P TYPE: + https://globe.adsbexchange.com/?reg=N270 N200ND TYPE: + https://globe.adsbexchange.com/?reg=N270 N202ND TYPE: + https://globe.adsbexchange.com/?reg=N270 N6284S TYPE: + https://globe.adsbexchange.com/?reg=N270 N299SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N799GF TYPE: + https://globe.adsbexchange.com/?reg=N270 N228ND TYPE: + https://globe.adsbexchange.com/?reg=N270 N6HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N12HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N17HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N18HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N19HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N65HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N71HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N73HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N113HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N311HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N514HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N387LJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N480NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N490NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N550NR TYPE: + https://globe.adsbexchange.com/?reg=N270 N715HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N716HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N717HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N810H TYPE: + https://globe.adsbexchange.com/?reg=N270 N850H TYPE: + https://globe.adsbexchange.com/?reg=N270 N856H TYPE: + https://globe.adsbexchange.com/?reg=N270 N860H TYPE: + https://globe.adsbexchange.com/?reg=N270 N910HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N200HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N370HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N60HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N90HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N880DT TYPE: + https://globe.adsbexchange.com/?reg=N270 N2237S TYPE: + https://globe.adsbexchange.com/?reg=N270 N17386 TYPE: + https://globe.adsbexchange.com/?reg=N270 N2181N TYPE: + https://globe.adsbexchange.com/?reg=N270 N9000V TYPE: + https://globe.adsbexchange.com/?reg=N270 N81PA TYPE: + https://globe.adsbexchange.com/?reg=N270 N871ST TYPE: + https://globe.adsbexchange.com/?reg=N270 N876S TYPE: + https://globe.adsbexchange.com/?reg=N270 N502SL TYPE: + https://globe.adsbexchange.com/?reg=N270 N504SL TYPE: + https://globe.adsbexchange.com/?reg=N270 N19WL TYPE: + https://globe.adsbexchange.com/?reg=N270 N8WL TYPE: + https://globe.adsbexchange.com/?reg=N270 N500SC TYPE: + https://globe.adsbexchange.com/?reg=N270 N330AU TYPE: + https://globe.adsbexchange.com/?reg=N270 N783SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N117TG TYPE: + https://globe.adsbexchange.com/?reg=N270 N121TG TYPE: + https://globe.adsbexchange.com/?reg=N270 N126TS TYPE: + https://globe.adsbexchange.com/?reg=N270 N617BG TYPE: + https://globe.adsbexchange.com/?reg=N270 N214NX TYPE: + https://globe.adsbexchange.com/?reg=N270 N886LF TYPE: + https://globe.adsbexchange.com/?reg=N270 N247FR TYPE: + https://globe.adsbexchange.com/?reg=N270 N350MC TYPE: + https://globe.adsbexchange.com/?reg=N270 N921LL TYPE: + https://globe.adsbexchange.com/?reg=N270 N677F TYPE: + https://globe.adsbexchange.com/?reg=N270 N213EM TYPE: + https://globe.adsbexchange.com/?reg=N270 N700GA TYPE: + https://globe.adsbexchange.com/?reg=N270 N702GD TYPE: + https://globe.adsbexchange.com/?reg=N270 N703GD TYPE: + https://globe.adsbexchange.com/?reg=N270 N703GA TYPE: + https://globe.adsbexchange.com/?reg=N270 N704GA TYPE: + https://globe.adsbexchange.com/?reg=N270 N705GD TYPE: + https://globe.adsbexchange.com/?reg=N270 N779XY TYPE: + https://globe.adsbexchange.com/?reg=N270 N779XW TYPE: + https://globe.adsbexchange.com/?reg=N270 N779XZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N779XX TYPE: + https://globe.adsbexchange.com/?reg=N270 N221NT TYPE: + https://globe.adsbexchange.com/?reg=N270 N222NT TYPE: + https://globe.adsbexchange.com/?reg=N270 N220BT TYPE: + https://globe.adsbexchange.com/?reg=N270 N800G TYPE: + https://globe.adsbexchange.com/?reg=N270 N802GD TYPE: + https://globe.adsbexchange.com/?reg=N270 N882EV TYPE: + https://globe.adsbexchange.com/?reg=N270 N701GL TYPE: + https://globe.adsbexchange.com/?reg=N270 N703DL TYPE: + https://globe.adsbexchange.com/?reg=N270 N9722L TYPE: + https://globe.adsbexchange.com/?reg=N270 N27751 TYPE: + https://globe.adsbexchange.com/?reg=N270 N27752 TYPE: + https://globe.adsbexchange.com/?reg=N270 N903PC TYPE: + https://globe.adsbexchange.com/?reg=N270 N542BJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N280BH TYPE: + https://globe.adsbexchange.com/?reg=N270 N971SK TYPE: + https://globe.adsbexchange.com/?reg=N270 N972SK TYPE: + https://globe.adsbexchange.com/?reg=N270 N100FV TYPE: + https://globe.adsbexchange.com/?reg=N270 N609TR TYPE: + https://globe.adsbexchange.com/?reg=N270 N281PR TYPE: + https://globe.adsbexchange.com/?reg=N270 N531TA TYPE: + https://globe.adsbexchange.com/?reg=N270 N532TX TYPE: + https://globe.adsbexchange.com/?reg=N270 N534TX TYPE: + https://globe.adsbexchange.com/?reg=N270 N7201S TYPE: + https://globe.adsbexchange.com/?reg=N270 N861BC TYPE: + https://globe.adsbexchange.com/?reg=N270 N7874 TYPE: + https://globe.adsbexchange.com/?reg=N270 N716X TYPE: + https://globe.adsbexchange.com/?reg=N270 N400G TYPE: + https://globe.adsbexchange.com/?reg=N270 N60304 TYPE: + https://globe.adsbexchange.com/?reg=N270 N2RF TYPE: + https://globe.adsbexchange.com/?reg=N270 N2MJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N390GM TYPE: + https://globe.adsbexchange.com/?reg=N270 N3175W TYPE: + https://globe.adsbexchange.com/?reg=N270 N5921C TYPE: + https://globe.adsbexchange.com/?reg=N270 N9477A TYPE: + https://globe.adsbexchange.com/?reg=N270 N367HP TYPE: + https://globe.adsbexchange.com/?reg=N270 N949BZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N2423U TYPE: + https://globe.adsbexchange.com/?reg=N270 N318JJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N131AE TYPE: + https://globe.adsbexchange.com/?reg=N270 N801WT TYPE: + https://globe.adsbexchange.com/?reg=N270 N379JM TYPE: + https://globe.adsbexchange.com/?reg=N270 N661MG TYPE: + https://globe.adsbexchange.com/?reg=N270 N8623W TYPE: + https://globe.adsbexchange.com/?reg=N270 N26DT TYPE: + https://globe.adsbexchange.com/?reg=N270 N6355J TYPE: + https://globe.adsbexchange.com/?reg=N270 N62JR TYPE: + https://globe.adsbexchange.com/?reg=N270 N616DP TYPE: + https://globe.adsbexchange.com/?reg=N270 N370RS TYPE: + https://globe.adsbexchange.com/?reg=N270 N52TL TYPE: + https://globe.adsbexchange.com/?reg=N270 N14WS TYPE: + https://globe.adsbexchange.com/?reg=N270 N317SR TYPE: + https://globe.adsbexchange.com/?reg=N270 N888FU TYPE: + https://globe.adsbexchange.com/?reg=N270 N921NG TYPE: + https://globe.adsbexchange.com/?reg=N270 N12768 TYPE: + https://globe.adsbexchange.com/?reg=N270 N88W TYPE: + https://globe.adsbexchange.com/?reg=N270 N964PP TYPE: + https://globe.adsbexchange.com/?reg=N270 N30AQ TYPE: + https://globe.adsbexchange.com/?reg=N270 N22LP TYPE: + https://globe.adsbexchange.com/?reg=N270 N814ST TYPE: + https://globe.adsbexchange.com/?reg=N270 N682TM TYPE: + https://globe.adsbexchange.com/?reg=N270 N888PN TYPE: + https://globe.adsbexchange.com/?reg=N270 N28AR TYPE: + https://globe.adsbexchange.com/?reg=N270 N300WZ TYPE: + https://globe.adsbexchange.com/?reg=N270 N317SP TYPE: + https://globe.adsbexchange.com/?reg=N270 N12VJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N282WB TYPE: + https://globe.adsbexchange.com/?reg=N270 N155AN TYPE: + https://globe.adsbexchange.com/?reg=N270 N545GH TYPE: + https://globe.adsbexchange.com/?reg=N270 N770LM TYPE: + https://globe.adsbexchange.com/?reg=N270 N4144C TYPE: + https://globe.adsbexchange.com/?reg=N270 N988FY TYPE: + https://globe.adsbexchange.com/?reg=N270 N983SV TYPE: + https://globe.adsbexchange.com/?reg=N270 N324FD TYPE: + https://globe.adsbexchange.com/?reg=N270 N96GU TYPE: + https://globe.adsbexchange.com/?reg=N270 N314RG TYPE: + https://globe.adsbexchange.com/?reg=N270 N7WW TYPE: + https://globe.adsbexchange.com/?reg=N270 N2AF TYPE: + https://globe.adsbexchange.com/?reg=N270 N945DC TYPE: + https://globe.adsbexchange.com/?reg=N270 N16WW TYPE: + https://globe.adsbexchange.com/?reg=N270 N80WW TYPE: + https://globe.adsbexchange.com/?reg=N270 N14RU TYPE: + https://globe.adsbexchange.com/?reg=N270 N939SH TYPE: + https://globe.adsbexchange.com/?reg=N270 N117 TYPE: + https://globe.adsbexchange.com/?reg=N270 N8CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N9CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N36RP TYPE: + https://globe.adsbexchange.com/?reg=N270 N605KG TYPE: + https://globe.adsbexchange.com/?reg=N270 N99DQ TYPE: + https://globe.adsbexchange.com/?reg=N270 N9FJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N638MF TYPE: + https://globe.adsbexchange.com/?reg=N270 N905CH TYPE: + https://globe.adsbexchange.com/?reg=N270 N702LF TYPE: + https://globe.adsbexchange.com/?reg=N270 N429HC TYPE: + https://globe.adsbexchange.com/?reg=N270 N833MK TYPE: + https://globe.adsbexchange.com/?reg=N270 N844MK TYPE: + https://globe.adsbexchange.com/?reg=N270 N855MK TYPE: + https://globe.adsbexchange.com/?reg=N270 N467CP TYPE: + https://globe.adsbexchange.com/?reg=N270 N700J TYPE: + https://globe.adsbexchange.com/?reg=N270 N1601H TYPE: + https://globe.adsbexchange.com/?reg=N270 N20AU TYPE: + https://globe.adsbexchange.com/?reg=N270 N1UM TYPE: + https://globe.adsbexchange.com/?reg=N270 N77CV TYPE: + https://globe.adsbexchange.com/?reg=N270 N517PD TYPE: + https://globe.adsbexchange.com/?reg=N270 N1PU TYPE: + https://globe.adsbexchange.com/?reg=N270 N901MJ TYPE: + https://globe.adsbexchange.com/?reg=N270 N12AM TYPE: + https://globe.adsbexchange.com/?reg=N270 N41UA TYPE: + https://globe.adsbexchange.com/?reg=N270 N89UA TYPE: + https://globe.adsbexchange.com/?reg=N270 N814SH TYPE: + https://globe.adsbexchange.com/?reg=N270 N45HF TYPE: + https://globe.adsbexchange.com/?reg=N270 N454GC TYPE: + https://globe.adsbexchange.com/?reg=N270 N151XL TYPE: + https://globe.adsbexchange.com/?reg=N270 N560VA TYPE: + https://globe.adsbexchange.com/?reg=N270 N68UW TYPE: + https://globe.adsbexchange.com/?reg=N270 N200UW TYPE: + https://globe.adsbexchange.com/?reg=N270 N576FA TYPE: + https://globe.adsbexchange.com/?reg=N270 N111GU TYPE: + https://globe.adsbexchange.com/?reg=N270 N41SU TYPE: + https://globe.adsbexchange.com/?reg=N270 N204MS TYPE: + https://globe.adsbexchange.com/?reg=N270 N406SF TYPE: + https://globe.adsbexchange.com/?reg=N270 N370U TYPE: + https://globe.adsbexchange.com/?reg=N270 N51VT TYPE: + https://globe.adsbexchange.com/?reg=N270 N71LU TYPE: + https://globe.adsbexchange.com/?reg=N270 N1863W TYPE: + https://globe.adsbexchange.com/?reg=N270 N7508 TYPE: + https://globe.adsbexchange.com/?reg=N270 N7509 TYPE: + https://globe.adsbexchange.com/?reg=N270 N160QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N141QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N100QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N162QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N142QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N143QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N166QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N104QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N163QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N109QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N111QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N145QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N146QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N147QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N148QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N150QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N167QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N112QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N113QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N165QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N151QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N114QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N115QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N116QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N152QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N117QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N154QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N155QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N156QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N157QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N158QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N175QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N176QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N177QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N178QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N184QS TYPE: + https://globe.adsbexchange.com/?reg=N270 N651FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N653FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N657FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N652FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N656FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N655FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N648FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N380ER TYPE: + https://globe.adsbexchange.com/?reg=N270 N666HD TYPE: + https://globe.adsbexchange.com/?reg=N270 N654FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N666FH TYPE: + https://globe.adsbexchange.com/?reg=N270 N650FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N136ZC TYPE: + https://globe.adsbexchange.com/?reg=N270 N96FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N90FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N91FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N92FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N93FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N97FX TYPE: + https://globe.adsbexchange.com/?reg=N270 N715VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N770TM TYPE: + https://globe.adsbexchange.com/?reg=N270 N710VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N707VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N690VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N680VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N685VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N688VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N70VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N95VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N85VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N80VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N650VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N600VM TYPE: + https://globe.adsbexchange.com/?reg=N270 N541BA TYPE: + https://globe.adsbexchange.com/?reg=N270 N544BA TYPE: + https://globe.adsbexchange.com/?reg=N270 N543BA TYPE: + https://globe.adsbexchange.com/?reg=N270 N520VA TYPE: + 21st Century Fox America N55RG TYPE: N2702 + 21st Century Fox America N24YS TYPE: N2702 + 21st Century Fox America N890TJ TYPE: N2702 + 21st Century Fox America N137GJ TYPE: N2702 + 21st Century Fox America N17KW TYPE: N2702 + 21st Century Fox America N188JS TYPE: N2702 + 21st Century Fox America N105TB TYPE: N2702 + 21st Century Fox America N747JX TYPE: N2702 + 21st Century Fox America N204RC TYPE: N2702 + 21st Century Fox America N30PR TYPE: N2702 + 21st Century Fox America N311MG TYPE: N2702 + 21st Century Fox America N33EN TYPE: N2702 + 21st Century Fox America N650KA TYPE: N2702 + 21st Century Fox America N148V TYPE: N2702 + 21st Century Fox America N2000 TYPE: N2702 + 21st Century Fox America N720Q TYPE: N2702 + 21st Century Fox America N12GP TYPE: N2702 + 21st Century Fox America N74HH TYPE: N2702 + 21st Century Fox America N277GS TYPE: N2702 + 21st Century Fox America N419MS TYPE: N2702 + 21st Century Fox America N179T TYPE: N2702 + 21st Century Fox America N779LC TYPE: N2702 + 21st Century Fox America N671LW TYPE: N2702 + 21st Century Fox America N888YZ TYPE: N2702 + 21st Century Fox America N396CF TYPE: N2702 + 21st Century Fox America N44YS TYPE: N2702 + 21st Century Fox America N1218C TYPE: N2702 + 21st Century Fox America N511PK TYPE: N2702 + 21st Century Fox America N10123 TYPE: N2702 + 21st Century Fox America N608GV TYPE: N2702 + AbbVie N887GV TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N897GV TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N945NA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N711VL TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N892TM TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N868DS TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N829NL TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N2JR TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N400M TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N944NA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N226RM TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N946NA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N947NA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N180AR TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N471GG TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N468HW TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N889JC TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N945PK TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N501JV TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N173EL TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N777RW TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N227LA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N57HE TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N213JA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N608MD TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N91NA TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N721CN TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N4UB TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N826GW TYPE: N550AV, N551AV, N554AV, N556AV + AbbVie N880WE TYPE: N550AV, N551AV, N554AV, N556AV + Adobe N459BL TYPE: N82123 + Adobe N860PM TYPE: N82123 + Adobe N264CL TYPE: N82123 + Adobe N189WS TYPE: N82123 + Adobe N720LH TYPE: N82123 + Adobe N500JW TYPE: N82123 + Adobe N840RG TYPE: N82123 + Adobe N72BP TYPE: N82123 + Adobe N81RR TYPE: N82123 + Adobe N457BE TYPE: N82123 + Adobe N985BB TYPE: N82123 + Adobe N522HS TYPE: N82123 + Adobe N868SM TYPE: N82123 + Adobe N4NR TYPE: N82123 + Adobe N234LR TYPE: N82123 + Adobe N480RW TYPE: N82123 + Adobe N818VB TYPE: N82123 + Adobe N304TS TYPE: N82123 + Adobe N111FU TYPE: N82123 + Adobe N921MG TYPE: N82123 + Adobe N982RK TYPE: N82123 + Adobe N99PD TYPE: N82123 + Adobe N300UJ TYPE: N82123 + Adobe N186PA TYPE: N82123 + Adobe N706JA TYPE: N82123 + Adobe N323G TYPE: N82123 + Adobe N324JW TYPE: N82123 + Adobe N59ME TYPE: N82123 + Adobe N420JC TYPE: N82123 + Adobe N3DP TYPE: N82123 + Adobe N456BE TYPE: N82123 + Adobe N337LR TYPE: N82123 + Adobe N338UA TYPE: N82123 + Adobe N774MB TYPE: N82123 + Adobe N557JK TYPE: N82123 + Adobe N555XS TYPE: N82123 + Adobe N221CM TYPE: N82123 + Adobe N344GW TYPE: N82123 + Adobe N918HD TYPE: N82123 + Adobe N39LF TYPE: N82123 + Adobe N857PR TYPE: N82123 + Adobe N911HJ TYPE: N82123 + Adobe N1454 TYPE: N82123 + Adobe N212BA TYPE: N82123 + Aflac N356BR TYPE: N285AF, N280AF + Aflac N358CY TYPE: N285AF, N280AF + Aflac N50BH TYPE: N285AF, N280AF + Aflac N874RA TYPE: N285AF, N280AF + Aflac N400AA TYPE: N285AF, N280AF + Aflac N855SA TYPE: N285AF, N280AF + Aflac N888SM TYPE: N285AF, N280AF + Aflac N15HE TYPE: N285AF, N280AF + Aflac N320MK TYPE: N285AF, N280AF + Aflac N353VA TYPE: N285AF, N280AF + Aflac N313MS TYPE: N285AF, N280AF + Aflac N270MC TYPE: N285AF, N280AF + Aflac N375LT TYPE: N285AF, N280AF + Aflac N670JF TYPE: N285AF, N280AF + Aflac N377LR TYPE: N285AF, N280AF + Aflac N30WR TYPE: N285AF, N280AF + Aflac N221WR TYPE: N285AF, N280AF + Aflac N461AR TYPE: N285AF, N280AF + Aflac N484GM TYPE: N285AF, N280AF + Aflac N388LR TYPE: N285AF, N280AF + Aflac N303MP TYPE: N285AF, N280AF + Aflac N734TJ TYPE: N285AF, N280AF + Aflac N888WE TYPE: N285AF, N280AF + Aflac N422TK TYPE: N285AF, N280AF + Aflac N175BG TYPE: N285AF, N280AF + Aflac N555GL TYPE: N285AF, N280AF + Aflac N560SH TYPE: N285AF, N280AF + Aflac N456AL TYPE: N285AF, N280AF + Aflac N813MK TYPE: N285AF, N280AF + Aflac N224KL TYPE: N285AF, N280AF + Aflac N461GT TYPE: N285AF, N280AF + Aflac N450BD TYPE: N285AF, N280AF + Aflac N165G TYPE: N285AF, N280AF + Air Lease Corp. N828AH TYPE: N1AL, N8AL + Air Lease Corp. N42FL TYPE: N1AL, N8AL + Air Lease Corp. N431JG TYPE: N1AL, N8AL + Air Lease Corp. N711UF TYPE: N1AL, N8AL + Air Lease Corp. N712AS TYPE: N1AL, N8AL + Air Lease Corp. N492A TYPE: N1AL, N8AL + Air Lease Corp. N17LK TYPE: N1AL, N8AL + Air Lease Corp. N469BT TYPE: N1AL, N8AL + Air Lease Corp. N45KR TYPE: N1AL, N8AL + Air Lease Corp. N18ZL TYPE: N1AL, N8AL + Air Lease Corp. N357KM TYPE: N1AL, N8AL + Air Lease Corp. N928BK TYPE: N1AL, N8AL + Air Lease Corp. N467AM TYPE: N1AL, N8AL + Air Lease Corp. N249JC TYPE: N1AL, N8AL + Air Lease Corp. N118JK TYPE: N1AL, N8AL + Air Lease Corp. N510FR TYPE: N1AL, N8AL + Air Lease Corp. N776MA TYPE: N1AL, N8AL + Air Lease Corp. N36DA TYPE: N1AL, N8AL + Air Lease Corp. N951XF TYPE: N1AL, N8AL + Air Lease Corp. N800TD TYPE: N1AL, N8AL + Air Lease Corp. N555DW TYPE: N1AL, N8AL + Air Lease Corp. N413WJ TYPE: N1AL, N8AL + Air Lease Corp. N194PA TYPE: N1AL, N8AL + Air Lease Corp. N34JE TYPE: N1AL, N8AL + Air Lease Corp. N383MJ TYPE: N1AL, N8AL + Air Lease Corp. N228MD TYPE: N1AL, N8AL + Allen & Company N975RG TYPE: N550AA, N550GW + Allen & Company N550JF TYPE: N550AA, N550GW + Allen & Company N477SJ TYPE: N550AA, N550GW + Allen & Company N111HC TYPE: N550AA, N550GW + Allen & Company N62MV TYPE: N550AA, N550GW + Allen & Company N80SR TYPE: N550AA, N550GW + Allen & Company N416WM TYPE: N550AA, N550GW + Allen & Company N500GF TYPE: N550AA, N550GW + Allen & Company N218EE TYPE: N550AA, N550GW + Allen & Company N388MM TYPE: N550AA, N550GW + Allen & Company N939KM TYPE: N550AA, N550GW + Allen & Company N7513H TYPE: N550AA, N550GW + Allen & Company N384BB TYPE: N550AA, N550GW + Allen & Company N300JZ TYPE: N550AA, N550GW + Abbott Labratories N1W TYPE: N100AL, N900AL, N550AL,N650AL + Abbott Labratories N124 TYPE: N100AL, N900AL, N550AL,N650AL + AT&T N19AH TYPE: N775E, N900SB + AT&T N49AH TYPE: N775E, N900SB + AT&T N145HM TYPE: N775E, N900SB + BIC Lighters and Pens N641SU TYPE: N550BG + CarMax N3KA TYPE: N75KX + CarMax N3BU TYPE: N75KX + Citigroup N6012C TYPE: N2019C, N805WM, N6012C, N8012C + Citigroup N8012C TYPE: N2019C, N805WM, N6012C, N8012C + https://globe.adsbexchange.com/?reg=N131 N131DS TYPE: + https://globe.adsbexchange.com/?reg=N131 N84CW TYPE: + https://globe.adsbexchange.com/?reg=N131 N86CW TYPE: + https://globe.adsbexchange.com/?reg=N131 N91CW TYPE: + https://globe.adsbexchange.com/?reg=N131 N93CW TYPE: + https://globe.adsbexchange.com/?reg=N131 N1040 TYPE: + https://globe.adsbexchange.com/?reg=N131 N1640 TYPE: + https://globe.adsbexchange.com/?reg=N131 N1040C TYPE: + https://globe.adsbexchange.com/?reg=N131 N68CB TYPE: + https://globe.adsbexchange.com/?reg=N131 N283CE TYPE: + https://globe.adsbexchange.com/?reg=N131 N282CE TYPE: + https://globe.adsbexchange.com/?reg=N131 N281CE TYPE: + https://globe.adsbexchange.com/?reg=N131 N6D TYPE: + https://globe.adsbexchange.com/?reg=N131 N235DX TYPE: + https://globe.adsbexchange.com/?reg=N131 N717DX TYPE: + https://globe.adsbexchange.com/?reg=N131 N607DX TYPE: + https://globe.adsbexchange.com/?reg=N131 N858MY TYPE: + https://globe.adsbexchange.com/?reg=N131 N914BD TYPE: + https://globe.adsbexchange.com/?reg=N131 N590MC TYPE: + https://globe.adsbexchange.com/?reg=N131 N260DL TYPE: + https://globe.adsbexchange.com/?reg=N131 N290DL TYPE: + https://globe.adsbexchange.com/?reg=N131 N900ES TYPE: + https://globe.adsbexchange.com/?reg=N131 N499JB TYPE: + https://globe.adsbexchange.com/?reg=N131 N855DG TYPE: + https://globe.adsbexchange.com/?reg=N131 N147CJ TYPE: + https://globe.adsbexchange.com/?reg=N131 N34681 TYPE: + https://globe.adsbexchange.com/?reg=N131 N848JA TYPE: + https://globe.adsbexchange.com/?reg=N131 N575MW TYPE: + https://globe.adsbexchange.com/?reg=N131 N139DE TYPE: + https://globe.adsbexchange.com/?reg=N131 N407LT TYPE: + https://globe.adsbexchange.com/?reg=N131 N992DB TYPE: + https://globe.adsbexchange.com/?reg=N131 N56EL TYPE: + https://globe.adsbexchange.com/?reg=N131 N283EM TYPE: + https://globe.adsbexchange.com/?reg=N131 N1FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N2FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N6FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N21FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N24FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N26FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N28FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N35FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N37FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N39FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N43FE TYPE: + https://globe.adsbexchange.com/?reg=N131 N47SC TYPE: + https://globe.adsbexchange.com/?reg=N131 N881MJ TYPE: + https://globe.adsbexchange.com/?reg=N131 N326K TYPE: + https://globe.adsbexchange.com/?reg=N131 N328K TYPE: + https://globe.adsbexchange.com/?reg=N131 N330K TYPE: + https://globe.adsbexchange.com/?reg=N131 N123FT TYPE: + https://globe.adsbexchange.com/?reg=N131 N221FT TYPE: + https://globe.adsbexchange.com/?reg=N131 N328MM TYPE: + https://globe.adsbexchange.com/?reg=N131 N812G TYPE: + https://globe.adsbexchange.com/?reg=N131 N776GM TYPE: + https://globe.adsbexchange.com/?reg=N131 N775GM TYPE: + https://globe.adsbexchange.com/?reg=N131 N650WS TYPE: + https://globe.adsbexchange.com/?reg=N131 N280WS TYPE: + https://globe.adsbexchange.com/?reg=N131 N998PB TYPE: + https://globe.adsbexchange.com/?reg=N131 N222GV TYPE: + https://globe.adsbexchange.com/?reg=N131 N904G TYPE: + https://globe.adsbexchange.com/?reg=N131 N68GW TYPE: + https://globe.adsbexchange.com/?reg=N131 N716GC TYPE: + https://globe.adsbexchange.com/?reg=N131 N2LA TYPE: + https://globe.adsbexchange.com/?reg=N131 N2N TYPE: + https://globe.adsbexchange.com/?reg=N131 N711RL TYPE: + https://globe.adsbexchange.com/?reg=N131 N173JM TYPE: + https://globe.adsbexchange.com/?reg=N131 N515PL TYPE: + https://globe.adsbexchange.com/?reg=N131 N915FG TYPE: + https://globe.adsbexchange.com/?reg=N131 N74VW TYPE: + https://globe.adsbexchange.com/?reg=N131 N17TE TYPE: + https://globe.adsbexchange.com/?reg=N131 N650FJ TYPE: + https://globe.adsbexchange.com/?reg=N131 N625GN TYPE: + https://globe.adsbexchange.com/?reg=N131 N252TF TYPE: + https://globe.adsbexchange.com/?reg=N131 N919FG TYPE: + https://globe.adsbexchange.com/?reg=N131 N62LV TYPE: + https://globe.adsbexchange.com/?reg=N131 N611BF TYPE: + https://globe.adsbexchange.com/?reg=N131 N627JW TYPE: + https://globe.adsbexchange.com/?reg=N131 N312JC TYPE: + https://globe.adsbexchange.com/?reg=N131 N480JJ TYPE: + https://globe.adsbexchange.com/?reg=N131 N11AF TYPE: + https://globe.adsbexchange.com/?reg=N131 N762F TYPE: + https://globe.adsbexchange.com/?reg=N131 N721F TYPE: + https://globe.adsbexchange.com/?reg=N131 N1DM TYPE: + https://globe.adsbexchange.com/?reg=N131 N356ML TYPE: + https://globe.adsbexchange.com/?reg=N131 N288DG TYPE: + https://globe.adsbexchange.com/?reg=N131 N8439E TYPE: + https://globe.adsbexchange.com/?reg=N131 N89NC TYPE: + https://globe.adsbexchange.com/?reg=N131 N851PB TYPE: + https://globe.adsbexchange.com/?reg=N131 N444DN TYPE: + https://globe.adsbexchange.com/?reg=N131 N886AJ TYPE: + https://globe.adsbexchange.com/?reg=N131 N17JS TYPE: + https://globe.adsbexchange.com/?reg=N131 N13JS TYPE: + https://globe.adsbexchange.com/?reg=N131 N122GA TYPE: + https://globe.adsbexchange.com/?reg=N131 N723GD TYPE: + https://globe.adsbexchange.com/?reg=N131 N335FG TYPE: + https://globe.adsbexchange.com/?reg=N131 N808XX TYPE: + https://globe.adsbexchange.com/?reg=N131 N650AF TYPE: + https://globe.adsbexchange.com/?reg=N131 N1989R TYPE: + https://globe.adsbexchange.com/?reg=N131 N750JE TYPE: + https://globe.adsbexchange.com/?reg=N131 N716AS TYPE: + https://globe.adsbexchange.com/?reg=N131 N793AP TYPE: + https://globe.adsbexchange.com/?reg=N131 N616KG TYPE: + https://globe.adsbexchange.com/?reg=N131 N618KG TYPE: + https://globe.adsbexchange.com/?reg=N131 N906MC TYPE: + https://globe.adsbexchange.com/?reg=N131 N919CH TYPE: + https://globe.adsbexchange.com/?reg=N131 N313TR TYPE: + https://globe.adsbexchange.com/?reg=N131 N84PH TYPE: + https://globe.adsbexchange.com/?reg=N131 N620JK TYPE: + https://globe.adsbexchange.com/?reg=N131 N378AP TYPE: + https://globe.adsbexchange.com/?reg=N131 N387AP TYPE: + https://globe.adsbexchange.com/?reg=N131 N387TP TYPE: + https://globe.adsbexchange.com/?reg=N131 N446CJ TYPE: + https://globe.adsbexchange.com/?reg=N131 N11PH TYPE: + https://globe.adsbexchange.com/?reg=N131 N2320 TYPE: + https://globe.adsbexchange.com/?reg=N131 N2118A TYPE: + https://globe.adsbexchange.com/?reg=N131 N975KA TYPE: + https://globe.adsbexchange.com/?reg=N131 N63628 TYPE: + https://globe.adsbexchange.com/?reg=N131 N10EC TYPE: + https://globe.adsbexchange.com/?reg=N131 N110EC TYPE: + https://globe.adsbexchange.com/?reg=N131 N210EC TYPE: + https://globe.adsbexchange.com/?reg=N131 N510EC TYPE: + https://globe.adsbexchange.com/?reg=N131 N750HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N760HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N780HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N910EC TYPE: + https://globe.adsbexchange.com/?reg=N131 N1TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N40TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N146TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N147TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N148TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N1727L TYPE: + https://globe.adsbexchange.com/?reg=N131 N200RR TYPE: + https://globe.adsbexchange.com/?reg=N131 N215TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N243TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N244TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N329TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N430TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N502TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N503TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N504TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N5271B TYPE: + https://globe.adsbexchange.com/?reg=N131 N454TB TYPE: + https://globe.adsbexchange.com/?reg=N131 N702TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N819TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N956TX TYPE: + https://globe.adsbexchange.com/?reg=N131 N253HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N352HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N353HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N354HP TYPE: + https://globe.adsbexchange.com/?reg=N131 N773TP TYPE: + https://globe.adsbexchange.com/?reg=N131 N2VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N5VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N27VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N28VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N30VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N32VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N34VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N35VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N36VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N39VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N71VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N764VA TYPE: + https://globe.adsbexchange.com/?reg=N131 N102LP TYPE: + https://globe.adsbexchange.com/?reg=N131 N207HB TYPE: + https://globe.adsbexchange.com/?reg=N131 N2446X TYPE: + https://globe.adsbexchange.com/?reg=N131 N305RC TYPE: + https://globe.adsbexchange.com/?reg=N131 N3532K TYPE: + https://globe.adsbexchange.com/?reg=N131 N565E TYPE: + https://globe.adsbexchange.com/?reg=N131 N216KQ TYPE: + https://globe.adsbexchange.com/?reg=N131 N1WV TYPE: + https://globe.adsbexchange.com/?reg=N131 N3WV TYPE: + https://globe.adsbexchange.com/?reg=N131 N5WV TYPE: + https://globe.adsbexchange.com/?reg=N131 N6WV TYPE: + https://globe.adsbexchange.com/?reg=N131 N17UP TYPE: + https://globe.adsbexchange.com/?reg=N131 N204W TYPE: + https://globe.adsbexchange.com/?reg=N131 N2397S TYPE: + https://globe.adsbexchange.com/?reg=N131 N387W TYPE: + https://globe.adsbexchange.com/?reg=N131 N389W TYPE: + https://globe.adsbexchange.com/?reg=N131 N395W TYPE: + https://globe.adsbexchange.com/?reg=N131 N337SS TYPE: + https://globe.adsbexchange.com/?reg=N131 N831MA TYPE: + https://globe.adsbexchange.com/?reg=N131 N832MA TYPE: + https://globe.adsbexchange.com/?reg=N131 N833MA TYPE: + https://globe.adsbexchange.com/?reg=N131 N6991H TYPE: + https://globe.adsbexchange.com/?reg=N131 N735UY TYPE: + https://globe.adsbexchange.com/?reg=N131 N182NR TYPE: + https://globe.adsbexchange.com/?reg=N131 N100DB TYPE: + https://globe.adsbexchange.com/?reg=N131 N1050V TYPE: + https://globe.adsbexchange.com/?reg=N131 N101WY TYPE: + https://globe.adsbexchange.com/?reg=N131 N102WY TYPE: + https://globe.adsbexchange.com/?reg=N131 N104WY TYPE: + Duke Energy N843GG TYPE: N575MW,N139DE,N407LT + Eli Lilly and Company N814LL TYPE: N307EL, N308EL + Enterprise Car Rental N443PR TYPE: N56EL, N57EL + Enterprise Car Rental N44PR TYPE: N56EL, N57EL + ExxonMobile N5PF TYPE: N100A, N200A, N300A, N283EM, N + FedEx N888ZF TYPE: N1FE, N2FE, N6FE, N21FE, N24FE + First Horizon Bank N756LB TYPE: N47SC + https://globe.adsbexchange.com/?reg=N604 N604MH TYPE: + https://globe.adsbexchange.com/?reg=N604 N450MH TYPE: + https://globe.adsbexchange.com/?reg=N604 N1454H TYPE: + https://globe.adsbexchange.com/?reg=N604 N585JC TYPE: + https://globe.adsbexchange.com/?reg=N604 N519BH TYPE: + https://globe.adsbexchange.com/?reg=N604 N2HL TYPE: + https://globe.adsbexchange.com/?reg=N604 N872HL TYPE: + https://globe.adsbexchange.com/?reg=N604 N372HL TYPE: + https://globe.adsbexchange.com/?reg=N604 N72HL TYPE: + https://globe.adsbexchange.com/?reg=N604 N272HL TYPE: + https://globe.adsbexchange.com/?reg=N604 N472HL TYPE: + https://globe.adsbexchange.com/?reg=N604 N151B TYPE: + https://globe.adsbexchange.com/?reg=N604 N933H TYPE: + https://globe.adsbexchange.com/?reg=N604 N705ML TYPE: + https://globe.adsbexchange.com/?reg=N604 N999TB TYPE: + https://globe.adsbexchange.com/?reg=N604 N389H TYPE: + https://globe.adsbexchange.com/?reg=N604 N966H TYPE: + https://globe.adsbexchange.com/?reg=N604 N139H TYPE: + https://globe.adsbexchange.com/?reg=N604 N161B TYPE: + https://globe.adsbexchange.com/?reg=N604 N2030P TYPE: + https://globe.adsbexchange.com/?reg=N604 N620JH TYPE: + https://globe.adsbexchange.com/?reg=N604 N233CL TYPE: + https://globe.adsbexchange.com/?reg=N604 N564HV TYPE: + https://globe.adsbexchange.com/?reg=N604 N565HV TYPE: + https://globe.adsbexchange.com/?reg=N604 N78HV TYPE: + https://globe.adsbexchange.com/?reg=N604 N286CH TYPE: + https://globe.adsbexchange.com/?reg=N604 N286DP TYPE: + https://globe.adsbexchange.com/?reg=N604 N286FM TYPE: + https://globe.adsbexchange.com/?reg=N604 N286SJ TYPE: + https://globe.adsbexchange.com/?reg=N604 N386AZ TYPE: + https://globe.adsbexchange.com/?reg=N604 N486FM TYPE: + https://globe.adsbexchange.com/?reg=N604 N728LM TYPE: + https://globe.adsbexchange.com/?reg=N604 N786WM TYPE: + https://globe.adsbexchange.com/?reg=N604 N873PC TYPE: + https://globe.adsbexchange.com/?reg=N604 N872J TYPE: + https://globe.adsbexchange.com/?reg=N604 N428JE TYPE: + https://globe.adsbexchange.com/?reg=N604 N551GG TYPE: + https://globe.adsbexchange.com/?reg=N604 N282JD TYPE: + https://globe.adsbexchange.com/?reg=N604 N537GS TYPE: + https://globe.adsbexchange.com/?reg=N604 N600JV TYPE: + https://globe.adsbexchange.com/?reg=N604 N637GA TYPE: + https://globe.adsbexchange.com/?reg=N604 N85NV TYPE: + https://globe.adsbexchange.com/?reg=N604 N604SB TYPE: + https://globe.adsbexchange.com/?reg=N604 N109HS TYPE: + https://globe.adsbexchange.com/?reg=N604 N347K TYPE: + https://globe.adsbexchange.com/?reg=N604 N357K TYPE: + https://globe.adsbexchange.com/?reg=N604 N341K TYPE: + https://globe.adsbexchange.com/?reg=N604 N355K TYPE: + https://globe.adsbexchange.com/?reg=N604 N359K TYPE: + https://globe.adsbexchange.com/?reg=N604 N353K TYPE: + https://globe.adsbexchange.com/?reg=N604 N352K TYPE: + https://globe.adsbexchange.com/?reg=N604 N342K TYPE: + https://globe.adsbexchange.com/?reg=N604 N356K TYPE: + https://globe.adsbexchange.com/?reg=N604 N354K TYPE: + https://globe.adsbexchange.com/?reg=N604 N719KX TYPE: + https://globe.adsbexchange.com/?reg=N604 N390KX TYPE: + https://globe.adsbexchange.com/?reg=N604 N265K TYPE: + https://globe.adsbexchange.com/?reg=N604 N302K TYPE: + https://globe.adsbexchange.com/?reg=N604 N797KK TYPE: + https://globe.adsbexchange.com/?reg=N604 N777KK TYPE: + https://globe.adsbexchange.com/?reg=N604 N111KK TYPE: + https://globe.adsbexchange.com/?reg=N604 N101KK TYPE: + https://globe.adsbexchange.com/?reg=N604 N48KR TYPE: + https://globe.adsbexchange.com/?reg=N604 N49KR TYPE: + https://globe.adsbexchange.com/?reg=N604 N302KC TYPE: + https://globe.adsbexchange.com/?reg=N604 N304KC TYPE: + https://globe.adsbexchange.com/?reg=N604 N300KC TYPE: + https://globe.adsbexchange.com/?reg=N604 N50KR TYPE: + https://globe.adsbexchange.com/?reg=N604 N500LS TYPE: + https://globe.adsbexchange.com/?reg=N604 N280BC TYPE: + https://globe.adsbexchange.com/?reg=N604 N347NA TYPE: + https://globe.adsbexchange.com/?reg=N604 N960DT TYPE: + https://globe.adsbexchange.com/?reg=N604 N307PD TYPE: + https://globe.adsbexchange.com/?reg=N604 N55LC TYPE: + https://globe.adsbexchange.com/?reg=N604 N133RL TYPE: + https://globe.adsbexchange.com/?reg=N604 N783MM TYPE: + https://globe.adsbexchange.com/?reg=N604 N57MH TYPE: + https://globe.adsbexchange.com/?reg=N604 N522MH TYPE: + https://globe.adsbexchange.com/?reg=N604 N650NR TYPE: + https://globe.adsbexchange.com/?reg=N604 N1969M TYPE: + https://globe.adsbexchange.com/?reg=N604 N1955M TYPE: + https://globe.adsbexchange.com/?reg=N604 N771HM TYPE: + https://globe.adsbexchange.com/?reg=N604 N772HM TYPE: + https://globe.adsbexchange.com/?reg=N604 N200JB TYPE: + https://globe.adsbexchange.com/?reg=N604 N790R TYPE: + https://globe.adsbexchange.com/?reg=N604 N691BD TYPE: + https://globe.adsbexchange.com/?reg=N604 N799JR TYPE: + https://globe.adsbexchange.com/?reg=N604 N506KM TYPE: + https://globe.adsbexchange.com/?reg=N604 N389DD TYPE: + https://globe.adsbexchange.com/?reg=N604 N3867X TYPE: + https://globe.adsbexchange.com/?reg=N604 N58AJ TYPE: + https://globe.adsbexchange.com/?reg=N604 N437YV TYPE: + https://globe.adsbexchange.com/?reg=N604 N5055J TYPE: + https://globe.adsbexchange.com/?reg=N604 N281MH TYPE: + https://globe.adsbexchange.com/?reg=N604 N320FC TYPE: + https://globe.adsbexchange.com/?reg=N604 N523NB TYPE: + https://globe.adsbexchange.com/?reg=N604 N208SA TYPE: + https://globe.adsbexchange.com/?reg=N604 N552GA TYPE: + https://globe.adsbexchange.com/?reg=N604 N3M TYPE: + https://globe.adsbexchange.com/?reg=N604 N527GA TYPE: + https://globe.adsbexchange.com/?reg=N604 N529GA TYPE: + https://globe.adsbexchange.com/?reg=N604 N473AP TYPE: + https://globe.adsbexchange.com/?reg=N604 N752LT TYPE: + https://globe.adsbexchange.com/?reg=N604 N530G TYPE: + https://globe.adsbexchange.com/?reg=N604 N531GA TYPE: + https://globe.adsbexchange.com/?reg=N604 N645HM TYPE: + https://globe.adsbexchange.com/?reg=N604 N356ER TYPE: + https://globe.adsbexchange.com/?reg=N604 N358ER TYPE: + https://globe.adsbexchange.com/?reg=N604 N590QP TYPE: + https://globe.adsbexchange.com/?reg=N604 N29US TYPE: + https://globe.adsbexchange.com/?reg=N604 N627GB TYPE: + https://globe.adsbexchange.com/?reg=N604 N72NG TYPE: + https://globe.adsbexchange.com/?reg=N604 N77NG TYPE: + https://globe.adsbexchange.com/?reg=N604 N37WH TYPE: + https://globe.adsbexchange.com/?reg=N604 N108EW TYPE: + https://globe.adsbexchange.com/?reg=N604 N108RT TYPE: + https://globe.adsbexchange.com/?reg=N604 N359AR TYPE: + https://globe.adsbexchange.com/?reg=N604 N821AR TYPE: + https://globe.adsbexchange.com/?reg=N604 N41127 TYPE: + https://globe.adsbexchange.com/?reg=N604 N631AB TYPE: + https://globe.adsbexchange.com/?reg=N604 N631CD TYPE: + https://globe.adsbexchange.com/?reg=N604 N190JA TYPE: + https://globe.adsbexchange.com/?reg=N604 N155TM TYPE: + https://globe.adsbexchange.com/?reg=N604 N163WT TYPE: + https://globe.adsbexchange.com/?reg=N604 N97DQ TYPE: + https://globe.adsbexchange.com/?reg=N604 N3TS TYPE: + https://globe.adsbexchange.com/?reg=N604 N858JL TYPE: + https://globe.adsbexchange.com/?reg=N604 N757PL TYPE: + https://globe.adsbexchange.com/?reg=N604 N121RS TYPE: + https://globe.adsbexchange.com/?reg=N604 N283DM TYPE: + https://globe.adsbexchange.com/?reg=N604 N401VE TYPE: + https://globe.adsbexchange.com/?reg=N604 N413PH TYPE: + https://globe.adsbexchange.com/?reg=N604 N900VL TYPE: + https://globe.adsbexchange.com/?reg=N604 N206SU TYPE: + https://globe.adsbexchange.com/?reg=N604 N100ED TYPE: + https://globe.adsbexchange.com/?reg=N604 N4FL TYPE: + https://globe.adsbexchange.com/?reg=N604 N313AG TYPE: + https://globe.adsbexchange.com/?reg=N604 N650KT TYPE: + https://globe.adsbexchange.com/?reg=N604 N1089 TYPE: + https://globe.adsbexchange.com/?reg=N604 N83JJ TYPE: + https://globe.adsbexchange.com/?reg=N604 N15UB TYPE: + https://globe.adsbexchange.com/?reg=N604 N88C TYPE: + https://globe.adsbexchange.com/?reg=N604 N247RU TYPE: + https://globe.adsbexchange.com/?reg=N604 N193LS TYPE: + https://globe.adsbexchange.com/?reg=N604 N948PH TYPE: + https://globe.adsbexchange.com/?reg=N604 N267JR TYPE: + https://globe.adsbexchange.com/?reg=N604 N830NR TYPE: + https://globe.adsbexchange.com/?reg=N604 N584ER TYPE: + https://globe.adsbexchange.com/?reg=N604 N267RF TYPE: + https://globe.adsbexchange.com/?reg=N604 N16DF TYPE: + https://globe.adsbexchange.com/?reg=N604 N518KA TYPE: + https://globe.adsbexchange.com/?reg=N604 N143 TYPE: + https://globe.adsbexchange.com/?reg=N604 N711PV TYPE: + https://globe.adsbexchange.com/?reg=N604 N117AL TYPE: + https://globe.adsbexchange.com/?reg=N604 N246BD TYPE: + https://globe.adsbexchange.com/?reg=N604 N813QS TYPE: + https://globe.adsbexchange.com/?reg=N604 N999YY TYPE: + https://globe.adsbexchange.com/?reg=N604 N4096Q TYPE: + https://globe.adsbexchange.com/?reg=N604 N39871 TYPE: + https://globe.adsbexchange.com/?reg=N604 N1111P TYPE: + Liberty Mutual Insurance N801PR TYPE: N270LE, N45JE, N801PR, N824SS + Liberty Mutual Insurance N824SS TYPE: N270LE, N45JE, N801PR, N824SS + https://globe.adsbexchange.com/?reg=N121 N1219M TYPE: + https://globe.adsbexchange.com/?reg=N121 N1907M TYPE: + https://globe.adsbexchange.com/?reg=N121 N519LM TYPE: + https://globe.adsbexchange.com/?reg=N121 N538M TYPE: + https://globe.adsbexchange.com/?reg=N121 N540M TYPE: + https://globe.adsbexchange.com/?reg=N121 N549M TYPE: + https://globe.adsbexchange.com/?reg=N121 N586M TYPE: + https://globe.adsbexchange.com/?reg=N121 N515CX TYPE: + https://globe.adsbexchange.com/?reg=N121 N563M TYPE: + https://globe.adsbexchange.com/?reg=N121 N811MK TYPE: + https://globe.adsbexchange.com/?reg=N121 N462MK TYPE: + https://globe.adsbexchange.com/?reg=N121 N858CG TYPE: + https://globe.adsbexchange.com/?reg=N121 N854MC TYPE: + https://globe.adsbexchange.com/?reg=N121 N669GD TYPE: + https://globe.adsbexchange.com/?reg=N121 N278L TYPE: + https://globe.adsbexchange.com/?reg=N121 N1TT TYPE: + https://globe.adsbexchange.com/?reg=N121 N512GV TYPE: + https://globe.adsbexchange.com/?reg=N121 N63NB TYPE: + https://globe.adsbexchange.com/?reg=N121 N694GS TYPE: + https://globe.adsbexchange.com/?reg=N121 N950CM TYPE: + https://globe.adsbexchange.com/?reg=N121 N15GX TYPE: + https://globe.adsbexchange.com/?reg=N121 N703DS TYPE: + https://globe.adsbexchange.com/?reg=N121 N183BX TYPE: + https://globe.adsbexchange.com/?reg=N121 N710P TYPE: + https://globe.adsbexchange.com/?reg=N121 N701P TYPE: + https://globe.adsbexchange.com/?reg=N121 N706P TYPE: + https://globe.adsbexchange.com/?reg=N121 N814PS TYPE: + https://globe.adsbexchange.com/?reg=N121 N168PX TYPE: + https://globe.adsbexchange.com/?reg=N121 N101PG TYPE: + https://globe.adsbexchange.com/?reg=N121 N102PG TYPE: + https://globe.adsbexchange.com/?reg=N121 N889CL TYPE: + https://globe.adsbexchange.com/?reg=N121 N889CH TYPE: + https://globe.adsbexchange.com/?reg=N121 N10J TYPE: + https://globe.adsbexchange.com/?reg=N121 N501PC TYPE: + https://globe.adsbexchange.com/?reg=N121 N503PC TYPE: + https://globe.adsbexchange.com/?reg=N121 N273A TYPE: + https://globe.adsbexchange.com/?reg=N121 N673HA TYPE: + https://globe.adsbexchange.com/?reg=N121 N756PC TYPE: + https://globe.adsbexchange.com/?reg=N121 N599HA TYPE: + https://globe.adsbexchange.com/?reg=N121 N756HA TYPE: + https://globe.adsbexchange.com/?reg=N121 N650VL TYPE: + https://globe.adsbexchange.com/?reg=N121 N79PG TYPE: + https://globe.adsbexchange.com/?reg=N121 N179PF TYPE: + https://globe.adsbexchange.com/?reg=N121 N1875A TYPE: + https://globe.adsbexchange.com/?reg=N121 N1948Z TYPE: + https://globe.adsbexchange.com/?reg=N121 N607RP TYPE: + https://globe.adsbexchange.com/?reg=N121 N692GD TYPE: + https://globe.adsbexchange.com/?reg=N121 N14JH TYPE: + https://globe.adsbexchange.com/?reg=N121 N36TA TYPE: + https://globe.adsbexchange.com/?reg=N121 N1065B TYPE: + https://globe.adsbexchange.com/?reg=N121 N910SA TYPE: + https://globe.adsbexchange.com/?reg=N121 N2143J TYPE: + https://globe.adsbexchange.com/?reg=N121 N3267N TYPE: + https://globe.adsbexchange.com/?reg=N121 N880WT TYPE: + https://globe.adsbexchange.com/?reg=N121 N108PB TYPE: + https://globe.adsbexchange.com/?reg=N121 N139MB TYPE: + https://globe.adsbexchange.com/?reg=N121 N188FJ TYPE: + https://globe.adsbexchange.com/?reg=N121 N12JS TYPE: + https://globe.adsbexchange.com/?reg=N121 N1826K TYPE: + https://globe.adsbexchange.com/?reg=N121 N822LC TYPE: + https://globe.adsbexchange.com/?reg=N121 N74JK TYPE: + https://globe.adsbexchange.com/?reg=N121 N11GW TYPE: + https://globe.adsbexchange.com/?reg=N121 N450GG TYPE: + https://globe.adsbexchange.com/?reg=N121 N95VE TYPE: + https://globe.adsbexchange.com/?reg=N121 N424PX TYPE: + https://globe.adsbexchange.com/?reg=N121 N416EL TYPE: + https://globe.adsbexchange.com/?reg=N121 N999GC TYPE: + https://globe.adsbexchange.com/?reg=N121 N582GD TYPE: + https://globe.adsbexchange.com/?reg=N121 N583GD TYPE: + https://globe.adsbexchange.com/?reg=N121 N962GA TYPE: + https://globe.adsbexchange.com/?reg=N121 N605DA TYPE: + https://globe.adsbexchange.com/?reg=N121 N84PJ TYPE: + https://globe.adsbexchange.com/?reg=N121 N83ML TYPE: + https://globe.adsbexchange.com/?reg=N121 N115TR TYPE: + https://globe.adsbexchange.com/?reg=N121 N920JS TYPE: + https://globe.adsbexchange.com/?reg=N121 N148L TYPE: + https://globe.adsbexchange.com/?reg=N121 N148JL TYPE: + https://globe.adsbexchange.com/?reg=N121 N939CC TYPE: + https://globe.adsbexchange.com/?reg=N121 N3877 TYPE: + https://globe.adsbexchange.com/?reg=N121 N704MF TYPE: + https://globe.adsbexchange.com/?reg=N121 N539JS TYPE: + https://globe.adsbexchange.com/?reg=N121 N508LB TYPE: + https://globe.adsbexchange.com/?reg=N121 N725LB TYPE: + https://globe.adsbexchange.com/?reg=N121 N700ME TYPE: + Netflix N2 TYPE: N533GV, N535GV, N512GV + Netflix N15 TYPE: N533GV, N535GV, N512GV + Netflix N35 TYPE: N533GV, N535GV, N512GV + Netflix N54 TYPE: N533GV, N535GV, N512GV + Netflix N55 TYPE: N533GV, N535GV, N512GV + Netflix N56 TYPE: N533GV, N535GV, N512GV + Netflix N57 TYPE: N533GV, N535GV, N512GV + Netflix N58 TYPE: N533GV, N535GV, N512GV + Netflix N59 TYPE: N533GV, N535GV, N512GV + Proctor & Gamble N5PG TYPE: N1PG, N2PG, N5PG, N6PG, N7PG + https://globe.adsbexchange.com/?reg=N288 N197DX TYPE: + https://globe.adsbexchange.com/?reg=N288 N26VW TYPE: + https://globe.adsbexchange.com/?reg=N288 N432CV TYPE: + https://globe.adsbexchange.com/?reg=N288 N465PC TYPE: + https://globe.adsbexchange.com/?reg=N288 N942TW TYPE: + https://globe.adsbexchange.com/?reg=N288 N46RT TYPE: + https://globe.adsbexchange.com/?reg=N288 N67RT TYPE: + https://globe.adsbexchange.com/?reg=N288 N89RT TYPE: + https://globe.adsbexchange.com/?reg=N288 N601RC TYPE: + https://globe.adsbexchange.com/?reg=N288 N63RP TYPE: + https://globe.adsbexchange.com/?reg=N288 N551RC TYPE: + https://globe.adsbexchange.com/?reg=N288 N551SW TYPE: + https://globe.adsbexchange.com/?reg=N288 N660DX TYPE: + https://globe.adsbexchange.com/?reg=N288 N512GL TYPE: + https://globe.adsbexchange.com/?reg=N288 N12MG TYPE: + https://globe.adsbexchange.com/?reg=N288 N50MG TYPE: + https://globe.adsbexchange.com/?reg=N288 N520MG TYPE: + https://globe.adsbexchange.com/?reg=N288 N979TM TYPE: + https://globe.adsbexchange.com/?reg=N288 N289PC TYPE: + https://globe.adsbexchange.com/?reg=N288 N505GD TYPE: + https://globe.adsbexchange.com/?reg=N288 N473HB TYPE: + https://globe.adsbexchange.com/?reg=N288 N244DS TYPE: + https://globe.adsbexchange.com/?reg=N288 N3E TYPE: + https://globe.adsbexchange.com/?reg=N288 N646Y TYPE: + https://globe.adsbexchange.com/?reg=N288 N40NS TYPE: + https://globe.adsbexchange.com/?reg=N288 N212WQ TYPE: + https://globe.adsbexchange.com/?reg=N288 N40WR TYPE: + https://globe.adsbexchange.com/?reg=N288 N721V TYPE: + https://globe.adsbexchange.com/?reg=N288 N211HS TYPE: + https://globe.adsbexchange.com/?reg=N288 N721K TYPE: + https://globe.adsbexchange.com/?reg=N288 N44SF TYPE: + https://globe.adsbexchange.com/?reg=N288 N425TM TYPE: + https://globe.adsbexchange.com/?reg=N288 N686BE TYPE: + https://globe.adsbexchange.com/?reg=N288 N585PL TYPE: + https://globe.adsbexchange.com/?reg=N288 N183T TYPE: + https://globe.adsbexchange.com/?reg=N288 N79TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N707WB TYPE: + https://globe.adsbexchange.com/?reg=N288 N83HD TYPE: + https://globe.adsbexchange.com/?reg=N288 N87HD TYPE: + https://globe.adsbexchange.com/?reg=N288 N86HD TYPE: + https://globe.adsbexchange.com/?reg=N288 N67WV TYPE: + https://globe.adsbexchange.com/?reg=N288 N2120 TYPE: + https://globe.adsbexchange.com/?reg=N288 N805TM TYPE: + https://globe.adsbexchange.com/?reg=N288 N811TM TYPE: + https://globe.adsbexchange.com/?reg=N288 N768BL TYPE: + https://globe.adsbexchange.com/?reg=N288 N715TS TYPE: + https://globe.adsbexchange.com/?reg=N288 N901TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N902TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N903TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N904TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N905TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N907TF TYPE: + https://globe.adsbexchange.com/?reg=N288 N996UA TYPE: + https://globe.adsbexchange.com/?reg=N288 N101UD TYPE: + https://globe.adsbexchange.com/?reg=N288 N845UP TYPE: + https://globe.adsbexchange.com/?reg=N288 N846UP TYPE: + https://globe.adsbexchange.com/?reg=N288 N1886N TYPE: + https://globe.adsbexchange.com/?reg=N288 N1886G TYPE: + https://globe.adsbexchange.com/?reg=N288 N2425J TYPE: + https://globe.adsbexchange.com/?reg=N288 N131EP TYPE: + https://globe.adsbexchange.com/?reg=N288 N5456W TYPE: + https://globe.adsbexchange.com/?reg=N288 N171EX TYPE: + https://globe.adsbexchange.com/?reg=N288 N307PS TYPE: + https://globe.adsbexchange.com/?reg=N288 N479W TYPE: + https://globe.adsbexchange.com/?reg=N288 N128SK TYPE: + https://globe.adsbexchange.com/?reg=N288 N979CB TYPE: + https://globe.adsbexchange.com/?reg=N288 N672WM TYPE: + https://globe.adsbexchange.com/?reg=N288 N898MJ TYPE: + https://globe.adsbexchange.com/?reg=N288 N616RH TYPE: + https://globe.adsbexchange.com/?reg=N288 N440C TYPE: + https://globe.adsbexchange.com/?reg=N288 N609JS TYPE: + https://globe.adsbexchange.com/?reg=N288 N451CS TYPE: + https://globe.adsbexchange.com/?reg=N288 N12MW TYPE: + https://globe.adsbexchange.com/?reg=N288 N651DE TYPE: + https://globe.adsbexchange.com/?reg=N288 N908BH TYPE: + https://globe.adsbexchange.com/?reg=N288 N7JP TYPE: + https://globe.adsbexchange.com/?reg=N288 N169SD TYPE: + https://globe.adsbexchange.com/?reg=N288 N94AD TYPE: + https://globe.adsbexchange.com/?reg=N288 N5SD TYPE: + https://globe.adsbexchange.com/?reg=N288 N6SD TYPE: + https://globe.adsbexchange.com/?reg=N288 N7SD TYPE: + https://globe.adsbexchange.com/?reg=N288 N8SD TYPE: + https://globe.adsbexchange.com/?reg=N288 N340FL TYPE: + https://globe.adsbexchange.com/?reg=N288 N221JS TYPE: + https://globe.adsbexchange.com/?reg=N288 N117MS TYPE: + https://globe.adsbexchange.com/?reg=N288 N1878E TYPE: + https://globe.adsbexchange.com/?reg=N288 N3ED TYPE: + https://globe.adsbexchange.com/?reg=N288 N943EW TYPE: + https://globe.adsbexchange.com/?reg=N288 N747RL TYPE: + https://globe.adsbexchange.com/?reg=N288 N747LE TYPE: + https://globe.adsbexchange.com/?reg=N288 N603BG TYPE: + https://globe.adsbexchange.com/?reg=N288 N702ER TYPE: + https://globe.adsbexchange.com/?reg=N288 N769F TYPE: + https://globe.adsbexchange.com/?reg=N288 N90SD TYPE: + Snapchat/Evan Spiegel N14KL TYPE: N14KL, N3E + Starbucks N721N TYPE: N19HS, N721K, N721N + Trinity Property Group N747HZ TYPE: N768BL + Trinity Property Group N747LA TYPE: N768BL + Trinity Property Group N429RL TYPE: N768BL + Ubiquiti Inc. (Robert Pera) N998R TYPE: N4096Q + https://globe.adsbexchange.com/?reg=N434 N434PB TYPE: + https://globe.adsbexchange.com/?reg=N434 N132M TYPE: + https://globe.adsbexchange.com/?reg=N434 N353V TYPE: + https://globe.adsbexchange.com/?reg=N434 N4VF TYPE: + https://globe.adsbexchange.com/?reg=N434 N5VF TYPE: + https://globe.adsbexchange.com/?reg=N434 N908VZ TYPE: + https://globe.adsbexchange.com/?reg=N434 N313V TYPE: + https://globe.adsbexchange.com/?reg=N434 N503GF TYPE: + https://globe.adsbexchange.com/?reg=N434 N504GF TYPE: + https://globe.adsbexchange.com/?reg=N434 N111MC TYPE: + https://globe.adsbexchange.com/?reg=N434 N506KS TYPE: + https://globe.adsbexchange.com/?reg=N434 N762MS TYPE: + https://globe.adsbexchange.com/?reg=N434 N268RB TYPE: + https://globe.adsbexchange.com/?reg=N434 N673WM TYPE: + https://globe.adsbexchange.com/?reg=N434 N674WM TYPE: + https://globe.adsbexchange.com/?reg=N434 N1500 TYPE: + https://globe.adsbexchange.com/?reg=N434 N222GY TYPE: + https://globe.adsbexchange.com/?reg=N434 N626Z TYPE: + https://globe.adsbexchange.com/?reg=N434 N8800E TYPE: + https://globe.adsbexchange.com/?reg=N434 N412E TYPE: + https://globe.adsbexchange.com/?reg=N434 N806HK TYPE: + https://globe.adsbexchange.com/?reg=N434 N80FE TYPE: + https://globe.adsbexchange.com/?reg=N434 N984BH TYPE: + https://globe.adsbexchange.com/?reg=N434 N984LH TYPE: + https://globe.adsbexchange.com/?reg=N434 N984PC TYPE: + https://globe.adsbexchange.com/?reg=N434 N984BF TYPE: + https://globe.adsbexchange.com/?reg=N434 N910NM TYPE: + https://globe.adsbexchange.com/?reg=N434 N59CX TYPE: + https://globe.adsbexchange.com/?reg=N434 N821AM TYPE: + https://globe.adsbexchange.com/?reg=N434 N921AM TYPE: + https://globe.adsbexchange.com/?reg=N434 N211PB TYPE: + https://globe.adsbexchange.com/?reg=N434 N311PB TYPE: + https://globe.adsbexchange.com/?reg=N434 N716TV TYPE: + https://globe.adsbexchange.com/?reg=N434 N895MM TYPE: + https://globe.adsbexchange.com/?reg=N434 N930GL TYPE: + https://globe.adsbexchange.com/?reg=N434 N865WW TYPE: + https://globe.adsbexchange.com/?reg=N434 N979WW TYPE: + https://globe.adsbexchange.com/?reg=N434 N65RM TYPE: + https://globe.adsbexchange.com/?reg=N434 N973MN TYPE: + https://globe.adsbexchange.com/?reg=N434 N1PK TYPE: + https://globe.adsbexchange.com/?reg=N434 N127UH TYPE: + https://globe.adsbexchange.com/?reg=N434 N427SH TYPE: + https://globe.adsbexchange.com/?reg=N434 N230UH TYPE: + https://globe.adsbexchange.com/?reg=N434 N320UH TYPE: + https://globe.adsbexchange.com/?reg=N434 N846PW TYPE: + https://globe.adsbexchange.com/?reg=N434 N117UH TYPE: + https://globe.adsbexchange.com/?reg=N434 N500UH TYPE: + https://globe.adsbexchange.com/?reg=N434 N686TM TYPE: + https://globe.adsbexchange.com/?reg=N434 N621AB TYPE: + https://globe.adsbexchange.com/?reg=N434 N203FJ TYPE: + https://globe.adsbexchange.com/?reg=N434 N512KS TYPE: + https://globe.adsbexchange.com/?reg=N434 N890D TYPE: + https://globe.adsbexchange.com/?reg=N434 N892D TYPE: + https://globe.adsbexchange.com/?reg=N434 N570D TYPE: + https://globe.adsbexchange.com/?reg=N434 N40D TYPE: + https://globe.adsbexchange.com/?reg=N434 N88T TYPE: + https://globe.adsbexchange.com/?reg=N434 N10SL TYPE: + https://globe.adsbexchange.com/?reg=N434 N122CA TYPE: + https://globe.adsbexchange.com/?reg=N434 N350ZB TYPE: + https://globe.adsbexchange.com/?reg=N434 N650ZB TYPE: + https://globe.adsbexchange.com/?reg=N434 N11A TYPE: + https://globe.adsbexchange.com/?reg=N434 N594GJ TYPE: + https://globe.adsbexchange.com/?reg=N434 N321SD TYPE: + https://globe.adsbexchange.com/?reg=N434 N650D TYPE: + https://globe.adsbexchange.com/?reg=N434 N897D TYPE: + https://globe.adsbexchange.com/?reg=N434 N584V TYPE: + https://globe.adsbexchange.com/?reg=N434 N720LF TYPE: + https://globe.adsbexchange.com/?reg=N434 N360LF TYPE: + https://globe.adsbexchange.com/?reg=N434 N121EF TYPE: + https://globe.adsbexchange.com/?reg=N434 N1415N TYPE: + https://globe.adsbexchange.com/?reg=N434 N142HC TYPE: + https://globe.adsbexchange.com/?reg=N434 N700LE TYPE: + https://globe.adsbexchange.com/?reg=N434 N54DP TYPE: + https://globe.adsbexchange.com/?reg=N434 N4500X TYPE: + https://globe.adsbexchange.com/?reg=N434 N700GF TYPE: + https://globe.adsbexchange.com/?reg=N434 N750PB TYPE: + https://globe.adsbexchange.com/?reg=N434 N313RG TYPE: + https://globe.adsbexchange.com/?reg=N434 N305KH TYPE: + https://globe.adsbexchange.com/?reg=N434 N2016A TYPE: + https://globe.adsbexchange.com/?reg=N434 N600TX TYPE: + Visa N686V TYPE: N476V, N358V, N584V, N686V + 3M Corp N818WP TYPE: N83M, N93M, N818WP + https://globe.adsbexchange.com/?reg=N272 N272GA TYPE: + https://globe.adsbexchange.com/?reg=N272 N501RP TYPE: + https://globe.adsbexchange.com/?reg=N272 N503RP TYPE: + https://globe.adsbexchange.com/?reg=N272 N504RP TYPE: + https://globe.adsbexchange.com/?reg=N272 N655MW TYPE: + https://globe.adsbexchange.com/?reg=N272 N660MW TYPE: + https://globe.adsbexchange.com/?reg=N272 N680MW TYPE: + https://globe.adsbexchange.com/?reg=N272 N564CH TYPE: + https://globe.adsbexchange.com/?reg=N272 N322CG TYPE: + https://globe.adsbexchange.com/?reg=N272 N250CG TYPE: + https://globe.adsbexchange.com/?reg=N272 N999V TYPE: + https://globe.adsbexchange.com/?reg=N272 N393BX TYPE: + https://globe.adsbexchange.com/?reg=N272 N393BZ TYPE: + https://globe.adsbexchange.com/?reg=N272 N393BU TYPE: + https://globe.adsbexchange.com/?reg=N272 N393BW TYPE: + https://globe.adsbexchange.com/?reg=N272 N359V TYPE: + https://globe.adsbexchange.com/?reg=N272 N168FT TYPE: + https://globe.adsbexchange.com/?reg=N272 N963U TYPE: + https://globe.adsbexchange.com/?reg=N272 N827U TYPE: + https://globe.adsbexchange.com/?reg=N272 N315RE TYPE: + https://globe.adsbexchange.com/?reg=N272 N283PH TYPE: + https://globe.adsbexchange.com/?reg=N272 N284PH TYPE: + https://globe.adsbexchange.com/?reg=N272 N285PH TYPE: + https://globe.adsbexchange.com/?reg=N272 N880X TYPE: + https://globe.adsbexchange.com/?reg=N272 N269HM TYPE: + https://globe.adsbexchange.com/?reg=N272 N477SC TYPE: + https://globe.adsbexchange.com/?reg=N272 N711VT TYPE: + https://globe.adsbexchange.com/?reg=N272 N95BD TYPE: + https://globe.adsbexchange.com/?reg=N272 N1960H TYPE: + https://globe.adsbexchange.com/?reg=N272 N800BD TYPE: + https://globe.adsbexchange.com/?reg=N272 N527H TYPE: + https://globe.adsbexchange.com/?reg=N272 N1897S TYPE: + https://globe.adsbexchange.com/?reg=N272 N97SJ TYPE: + https://globe.adsbexchange.com/?reg=N272 N798RS TYPE: + https://globe.adsbexchange.com/?reg=N272 N524AC TYPE: + https://globe.adsbexchange.com/?reg=N272 N527AC TYPE: + https://globe.adsbexchange.com/?reg=N272 N9714G TYPE: + https://globe.adsbexchange.com/?reg=N272 N343AR TYPE: + https://globe.adsbexchange.com/?reg=N272 N684AR TYPE: + https://globe.adsbexchange.com/?reg=N272 N685AR TYPE: + https://globe.adsbexchange.com/?reg=N272 N805AG TYPE: + https://globe.adsbexchange.com/?reg=N272 N806AG TYPE: + https://globe.adsbexchange.com/?reg=N272 N101XT TYPE: + https://globe.adsbexchange.com/?reg=N272 N303XT TYPE: + https://globe.adsbexchange.com/?reg=N272 N818HR TYPE: + https://globe.adsbexchange.com/?reg=N272 N818HF TYPE: + https://globe.adsbexchange.com/?reg=N272 N394GA TYPE: + https://globe.adsbexchange.com/?reg=N272 N203CK TYPE: + https://globe.adsbexchange.com/?reg=N272 N409GB TYPE: + https://globe.adsbexchange.com/?reg=N272 N488GB TYPE: + https://globe.adsbexchange.com/?reg=N272 N454GB TYPE: + https://globe.adsbexchange.com/?reg=N272 N797CX TYPE: + Spirit Aerosysyems N299CX TYPE: N797CX, N299CX + Gothams Disaster Emergency Response N33G TYPE: N33G + https://globe.adsbexchange.com/?reg=N836 N317SK TYPE: + https://globe.adsbexchange.com/?reg=N836 N318SK TYPE: + https://globe.adsbexchange.com/?reg=N836 N470SK TYPE: + https://globe.adsbexchange.com/?reg=N836 N476SK TYPE: + https://globe.adsbexchange.com/?reg=N836 N92RK TYPE: + https://globe.adsbexchange.com/?reg=N836 N2239X TYPE: + https://globe.adsbexchange.com/?reg=N836 N1FC TYPE: + https://globe.adsbexchange.com/?reg=N836 N470B TYPE: + Thoma Bravo N470BB TYPE: N470B, N470BB, N50B + Thoma Bravo N50B TYPE: N470B, N470BB, N50B + Beechcraft King Air 350 N374BH TYPE: N374BH + Boeing BBJ 737-200 N370BC TYPE: N370BC + Bombardier Challenger 300 N5 TYPE: + Bombardier Challenger 601 N275MT TYPE: N275MT + Bombardier Global 5000 N934JM TYPE: N934JM + Bombardier Global 6000 N885AQ TYPE: N885AQ + Bombardier Global 7500 N888GX TYPE: N888GX + Bombardier Global 7500 N265CP TYPE: N265CP + Bombardier Global Express (Global Air Su N320GX TYPE: N320GX + Cessna Citation CJ4 N573AB TYPE: N573AB + Cessna Citation ISP N986DS TYPE: N986DS + Cessna Citation Sovereign N483TW TYPE: N483TW + Cessna Citation X N171PC TYPE: N171PC + Cessna Citation X N751ED TYPE: N751ED + Cirrus Vision Jet N831DX TYPE: N831DX + Cirrus Vision Jet N9AS TYPE: N831DX + Dassault Falcon N3221B TYPE: N3221B + Dassault Falcon N00077 TYPE: SN00077 + Dassault Falcon 50 N199FG TYPE: N199FG + Falcon 50EX N198M TYPE: N198M + Dassault Falcon 7X N500N TYPE: N500N + Dassault Falcon 7X N939TY TYPE: N939TY + Dassault Falcon 8X N225DL TYPE: N225DL + Embraer Legacy 500 N665MC TYPE: N665MC + Embraer Legacy 650 N724SP TYPE: N724SP + Embraer Phenom 300 N911EJ TYPE: N911EJ + Embraer Praetor 500 N473DE TYPE: N473DE + Gulfstream G500 N500GU TYPE: N500GU + Gulfstream G550 (3 1/2 zone) N521SB TYPE: N521SB + Gulfstream G550 (3 zone) N955CM TYPE: N955CM + Gulfstream G550 (4 zone) N5430G TYPE: N5430G + Gulfstream G600 N318AG TYPE: N318AG + Gulfstream G650 (3 zone) N8 TYPE: N616RH + Gulfstream GIV N357PR TYPE: N357PR + Gulfstream GIV N905LP TYPE: N905LP + Gulfstream GIV-SP N899AL TYPE: N899AL + Gulfstream GIV-SP N110SN TYPE: N110SN + Gulfstream GIV-SP N741VE TYPE: N741VE + Gulfstream GIV-SP N6F TYPE: N741VE + Gulfstream GV N625GV TYPE: N625GV + Pilatus PC-12 N880AM TYPE: N880AM + Pilatus PC-12 N47NG TYPE: N47NG + Sikorski S61 Multimission, Construction N721HG TYPE: N721HG + Gulfstream G600 N332DX TYPE: N332DX diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..b1db0b0 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,33 @@ +version: '3.8' + +services: + backend: + build: + context: ./backend + container_name: shadowbroker-backend + ports: + - "8000:8000" + environment: + - AISSTREAM_API_KEY=${AISSTREAM_API_KEY} + - N2YO_API_KEY=${N2YO_API_KEY} + - OPENSKY_USERNAME=${OPENSKY_USERNAME} + - OPENSKY_PASSWORD=${OPENSKY_PASSWORD} + - LTA_ACCOUNT_KEY=${LTA_ACCOUNT_KEY} + volumes: + - backend_data:/app/data + restart: unless-stopped + + frontend: + build: + context: ./frontend + container_name: shadowbroker-frontend + ports: + - "3000:3000" + environment: + - NEXT_PUBLIC_API_URL=http://localhost:8000 + depends_on: + - backend + restart: unless-stopped + +volumes: + backend_data: diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..5ef6a52 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,41 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/versions + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# env files (can opt-in for committing if needed) +.env* + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts diff --git a/frontend/Dockerfile b/frontend/Dockerfile new file mode 100644 index 0000000..9e26af2 --- /dev/null +++ b/frontend/Dockerfile @@ -0,0 +1,19 @@ +FROM node:18-alpine + +WORKDIR /app + +# Install dependencies +COPY package*.json ./ +RUN npm install + +# Copy source code +COPY . . + +# Expose port +EXPOSE 3000 + +# Next.js telemetry disable +ENV NEXT_TELEMETRY_DISABLED 1 + +# Start development server +CMD ["npm", "run", "dev:frontend"] diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..e215bc4 --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,36 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` + +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/frontend/build_logs.txt b/frontend/build_logs.txt new file mode 100644 index 0000000..9765230 --- /dev/null +++ b/frontend/build_logs.txt @@ -0,0 +1,33 @@ + +> frontend@0.1.0 build +> next build + +Γû▓ Next.js 16.1.6 (Turbopack) + + Creating an optimized production build ... + +> Build error occurred +Error: Turbopack build failed with 1 errors: +./src/components/MapboxViewer.tsx:4:1 +Module not found: Can't resolve 'react-map-gl' + 2 | + 3 | import React, { useRef, useEffect, useState, useMemo } from "react"; +> 4 | import Map, { Source, Layer, Fog, Sky, useMap, MapRef } from "react-map-gl"; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + 5 | import type { LayerProps } from "react-map-gl"; + 6 | import "mapbox-gl/dist/mapbox-gl.css"; + 7 | import * as satellite from "satellite.js"; + + + +Import trace: + Client Component Browser: + ./src/components/MapboxViewer.tsx [Client Component Browser] + ./src/app/page.tsx [Client Component Browser] + ./src/app/page.tsx [Server Component] + +https://nextjs.org/docs/messages/module-not-found + + + at
This is the backend server providing vector glyphs for open map styles.
++ + Redirecting to the Map Styles gallery... +
+If you are a developer, you can find the source code on GitHub.
+This is the backend server providing vector glyphs for open map styles.
++ + Redirecting to the Map Styles gallery... +
+If you are a developer, you can find the source code on GitHub.
+This is the backend server providing vector glyphs for open map styles.
++ + Redirecting to the Map Styles gallery... +
+If you are a developer, you can find the source code on GitHub.
+This is the backend server providing vector glyphs for open map styles.
++ + Redirecting to the Map Styles gallery... +
+If you are a developer, you can find the source code on GitHub.
+This is the backend server providing vector glyphs for open map styles.
++ + Redirecting to the Map Styles gallery... +
+If you are a developer, you can find the source code on GitHub.
+This is the backend server providing vector glyphs for open map styles.
++ + Redirecting to the Map Styles gallery... +
+If you are a developer, you can find the source code on GitHub.
+