Malloy Documentation
search

Malloy provides a way to compute percent of total through level of detail (ungrouped aggregates) functions. The functions all() and exclude() escape grouping in aggregate calculations. These functions are different than window functions as they operate inline with the query and can produce correct results even when the data hits a limit or is fanned out. Use cases below.

document
source: flights is duckdb.table('../data/flights.parquet') extend {
  join_one: carriers is duckdb.table('../data/carriers.parquet') on carrier = carriers.code
  measure: flight_count is count()
}

Totals

Using all(), you can easily produce an aggregate calculation that includes all the data, not just the data on the current row. Southwest + USAir = 126,434 flights. Notice that all_flights is the total of all the flights accessible in the query.

document
run: flights -> {
  group_by: carriers.nickname
  aggregate: 
    flight_count
    all_flights is all(flight_count)
    limit: 2
}
QUERY RESULTS
nicknameflight_​countall_​flights
Southwest88,751344,827
USAir37,683344,827
[
  {
    "nickname": "Southwest",
    "flight_count": 88751,
    "all_flights": 344827
  },
  {
    "nickname": "USAir",
    "flight_count": 37683,
    "all_flights": 344827
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set=1 THEN
      carriers_0."nickname"
      END as "nickname__1",
    CASE WHEN group_set=1 THEN
      COUNT( 1)
      END as "flight_count__1",
    MAX((CASE WHEN group_set=0 THEN
      COUNT( 1)
      END)) OVER () as "all_flights__1"
  FROM '../data/flights.parquet' as flights
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON flights."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,1,1)) as group_set  ) as group_set
  GROUP BY 1,2
)
SELECT
  "nickname__1" as "nickname",
  MAX(CASE WHEN group_set=1 THEN "flight_count__1" END) as "flight_count",
  MAX(CASE WHEN group_set=1 THEN "all_flights__1" END) as "all_flights"
FROM __stage0
WHERE group_set NOT IN (0)
GROUP BY 1
ORDER BY 2 desc NULLS LAST
LIMIT 2

Percent of Total

The all() function is useful for percent of total calculations. The # percent tags the result so it is displayed as a percentage.

document
run: flights -> {
  group_by: carriers.nickname
  aggregate: 
    flight_count
    # percent
    percent_of_flights is flight_count / all(flight_count)
    limit: 5
}
QUERY RESULTS
nicknameflight_​countpercent_​of_​flights
Southwest88,75125.74%
USAir37,68310.93%
American34,57710.03%
Northwest33,5809.74%
United32,7579.5%
[
  {
    "nickname": "Southwest",
    "flight_count": 88751,
    "percent_of_flights": 0.2573783375431738
  },
  {
    "nickname": "USAir",
    "flight_count": 37683,
    "percent_of_flights": 0.10928088577750582
  },
  {
    "nickname": "American",
    "flight_count": 34577,
    "percent_of_flights": 0.10027347046489979
  },
  {
    "nickname": "Northwest",
    "flight_count": 33580,
    "percent_of_flights": 0.09738216554968143
  },
  {
    "nickname": "United",
    "flight_count": 32757,
    "percent_of_flights": 0.09499546149228454
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set=1 THEN
      carriers_0."nickname"
      END as "nickname__1",
    CASE WHEN group_set=1 THEN
      COUNT( 1)
      END as "flight_count__1",
    (CASE WHEN group_set=1 THEN
      COUNT( 1)
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT( 1)
      END)) OVER () as "percent_of_flights__1"
  FROM '../data/flights.parquet' as flights
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON flights."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,1,1)) as group_set  ) as group_set
  GROUP BY 1,2
)
SELECT
  "nickname__1" as "nickname",
  MAX(CASE WHEN group_set=1 THEN "flight_count__1" END) as "flight_count",
  MAX(CASE WHEN group_set=1 THEN "percent_of_flights__1" END) as "percent_of_flights"
FROM __stage0
WHERE group_set NOT IN (0)
GROUP BY 1
ORDER BY 2 desc NULLS LAST
LIMIT 5

All of a particular grouping

The all() function can optionally take the names of output columns to show all of a particular value. You can see that all of Southwests fights is still 88,751. The output column name for carriers.nickname is nickname so we use that in the calculation. The exclude() function lets you eliminate a dimension from grouping.

document
run: flights -> {
  group_by:
    carriers.nickname
    destination
    origin
  aggregate: 
    flight_count
    flights_by_this_carrier is all(flight_count, nickname)
    flights_to_this_destination is all(flight_count, destination)
    flights_by_this_origin is all(flight_count, origin)
    flights_on_this_route is exclude(flight_count, nickname)
  limit: 20
}
QUERY RESULTS
nicknamedestinationoriginflight_​countflights_​by_​this_​carrierflights_​to_​this_​destinationflights_​by_​this_​originflights_​on_​this_​route
DeltaLGADCA1,90332,1307,6256,6782,143
DeltaDCALGA1,90132,1306,6957,6232,123
DeltaBOSLGA1,03332,1305,7997,6231,214
DeltaLGABOS1,03132,1307,6255,7971,201
SouthwestOAKLAX82188,7515,08211,077868
Atlantic SoutheastPFNATL78715,76978917,875787
Atlantic SoutheastATLPFN77615,76917,832778776
SouthwestLAXOAK74588,75111,0745,076792
Atlantic SoutheastATLAGS71615,76917,832756717
Atlantic SoutheastAGSATL69615,76973717,875697
Atlantic SoutheastCHAATL67015,76969617,875670
Atlantic SoutheastATLCHA67015,76917,832697670
SouthwestLAXPHX66188,75111,07412,476819
Atlantic SoutheastAVLATL65715,76974117,875657
Atlantic SoutheastATLCSG65415,76917,832654654
Atlantic SoutheastCSGATL65115,76965117,875651
Atlantic SoutheastATLAVL64315,76917,832727643
SouthwestPHXLAS64188,75112,47711,096777
SouthwestLASPHX63788,75111,09212,476788
SouthwestLASLAX55688,75111,09211,0771,073
[
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "DCA",
    "flight_count": 1903,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 7625,
    "flights_by_this_origin": 6678,
    "flights_on_this_route": 2143
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "LGA",
    "flight_count": 1901,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 6695,
    "flights_by_this_origin": 7623,
    "flights_on_this_route": 2123
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "LGA",
    "flight_count": 1033,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 5799,
    "flights_by_this_origin": 7623,
    "flights_on_this_route": 1214
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "BOS",
    "flight_count": 1031,
    "flights_by_this_carrier": 32130,
    "flights_to_this_destination": 7625,
    "flights_by_this_origin": 5797,
    "flights_on_this_route": 1201
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 821,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 5082,
    "flights_by_this_origin": 11077,
    "flights_on_this_route": 868
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "PFN",
    "origin": "ATL",
    "flight_count": 787,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 789,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 787
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "PFN",
    "flight_count": 776,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 778,
    "flights_on_this_route": 776
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 745,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11074,
    "flights_by_this_origin": 5076,
    "flights_on_this_route": 792
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AGS",
    "flight_count": 716,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 756,
    "flights_on_this_route": 717
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AGS",
    "origin": "ATL",
    "flight_count": 696,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 737,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 697
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHA",
    "origin": "ATL",
    "flight_count": 670,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 696,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 670
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CHA",
    "flight_count": 670,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 697,
    "flights_on_this_route": 670
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 661,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11074,
    "flights_by_this_origin": 12476,
    "flights_on_this_route": 819
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AVL",
    "origin": "ATL",
    "flight_count": 657,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 741,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 657
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CSG",
    "flight_count": 654,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 654,
    "flights_on_this_route": 654
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CSG",
    "origin": "ATL",
    "flight_count": 651,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 651,
    "flights_by_this_origin": 17875,
    "flights_on_this_route": 651
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AVL",
    "flight_count": 643,
    "flights_by_this_carrier": 15769,
    "flights_to_this_destination": 17832,
    "flights_by_this_origin": 727,
    "flights_on_this_route": 643
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LAS",
    "flight_count": 641,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 12477,
    "flights_by_this_origin": 11096,
    "flights_on_this_route": 777
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 637,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11092,
    "flights_by_this_origin": 12476,
    "flights_on_this_route": 788
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 556,
    "flights_by_this_carrier": 88751,
    "flights_to_this_destination": 11092,
    "flights_by_this_origin": 11077,
    "flights_on_this_route": 1073
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END as "nickname__5",
    CASE WHEN group_set IN (5,2,4) THEN
      flights."destination"
      END as "destination__5",
    CASE WHEN group_set IN (5,3,4) THEN
      flights."origin"
      END as "origin__5",
    CASE WHEN group_set=5 THEN
      COUNT( 1)
      END as "flight_count__5",
    MAX((CASE WHEN group_set=1 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END) as "flights_by_this_carrier__5",
    MAX((CASE WHEN group_set=2 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      flights."destination"
      END) as "flights_to_this_destination__5",
    MAX((CASE WHEN group_set=3 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,3,4) THEN
      flights."origin"
      END) as "flights_by_this_origin__5",
    MAX((CASE WHEN group_set=4 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      flights."destination"
      END, CASE WHEN group_set IN (5,3,4) THEN
      flights."origin"
      END) as "flights_on_this_route__5"
  FROM '../data/flights.parquet' as flights
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON flights."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,5,1)) as group_set  ) as group_set
  GROUP BY 1,2,3,4
)
SELECT
  "nickname__5" as "nickname",
  "destination__5" as "destination",
  "origin__5" as "origin",
  MAX(CASE WHEN group_set=5 THEN "flight_count__5" END) as "flight_count",
  MAX(CASE WHEN group_set=5 THEN "flights_by_this_carrier__5" END) as "flights_by_this_carrier",
  MAX(CASE WHEN group_set=5 THEN "flights_to_this_destination__5" END) as "flights_to_this_destination",
  MAX(CASE WHEN group_set=5 THEN "flights_by_this_origin__5" END) as "flights_by_this_origin",
  MAX(CASE WHEN group_set=5 THEN "flights_on_this_route__5" END) as "flights_on_this_route"
FROM __stage0
WHERE group_set NOT IN (0,1,2,3,4)
GROUP BY 1,2,3
ORDER BY 4 desc NULLS LAST
LIMIT 20

As Percentages

Displaying results as percentages is often gives clues as to how numbers relate. Is this number a large or small percentage of the group? Level of detail calculations are great for this. In Malloy, identifiers enclosed in back-ticks can have spaces.

document
run: flights -> {
  group_by:
    carriers.nickname
    destination
    origin
  aggregate: 
    flight_count
    # percent
    `carrier as a percent of all flights` is all(flight_count, nickname) / all(flight_count)
    # percent
    `destination as a percent of all flights` is all(flight_count, destination) / all(flight_count)
    # percent
    `origin as a percent of all flights` is all(flight_count, origin) / all(flight_count)
    # percent
    `carriers as a percentage of route` is flight_count / exclude(flight_count, nickname)
}
QUERY RESULTS
nicknamedestinationoriginflight_​countcarrier as a percent of all flightsdestination as a percent of all flightsorigin as a percent of all flightscarriers as a percentage of route
DeltaLGADCA1,9039.32%2.21%1.94%88.8%
DeltaDCALGA1,9019.32%1.94%2.21%89.54%
DeltaBOSLGA1,0339.32%1.68%2.21%85.09%
DeltaLGABOS1,0319.32%2.21%1.68%85.85%
SouthwestOAKLAX82125.74%1.47%3.21%94.59%
Atlantic SoutheastPFNATL7874.57%0.23%5.18%100%
Atlantic SoutheastATLPFN7764.57%5.17%0.23%100%
SouthwestLAXOAK74525.74%3.21%1.47%94.07%
Atlantic SoutheastATLAGS7164.57%5.17%0.22%99.86%
Atlantic SoutheastAGSATL6964.57%0.21%5.18%99.86%
Atlantic SoutheastATLCHA6704.57%5.17%0.2%100%
Atlantic SoutheastCHAATL6704.57%0.2%5.18%100%
SouthwestLAXPHX66125.74%3.21%3.62%80.71%
Atlantic SoutheastAVLATL6574.57%0.21%5.18%100%
Atlantic SoutheastATLCSG6544.57%5.17%0.19%100%
Atlantic SoutheastCSGATL6514.57%0.19%5.18%100%
Atlantic SoutheastATLAVL6434.57%5.17%0.21%100%
SouthwestPHXLAS64125.74%3.62%3.22%82.5%
SouthwestLASPHX63725.74%3.22%3.62%80.84%
SouthwestLASLAX55625.74%3.22%3.21%51.82%
SouthwestPHXLAX55225.74%3.62%3.21%74.9%
SouthwestHOUMSY53625.74%0.99%0.94%100%
Atlantic SoutheastTRIATL5344.57%0.16%5.18%99.81%
Atlantic SoutheastATLTRI5344.57%5.17%0.16%99.63%
SouthwestLAXLAS51625.74%3.21%3.22%49.66%
SouthwestMDWMCI51325.74%1.92%1.18%100%
DeltaSTLATL5139.32%1.19%5.18%98.84%
DeltaATLSTL5109.32%5.17%1.19%98.84%
Atlantic SoutheastMGMATL5044.57%0.15%5.18%100%
SouthwestMCIMDW50425.74%1.18%1.92%100%
Atlantic SoutheastATLMGM5004.57%5.17%0.15%100%
SouthwestSANPHX49825.74%1.47%3.62%87.83%
American EagleDFWACT4944.6%5.16%0.14%100%
Atlantic SoutheastGNVATL4934.57%0.14%5.18%100%
American EagleACTDFW4924.6%0.14%5.16%100%
NorthwestDTWMSP4919.74%2.36%2.83%100%
SouthwestOAKSAN48225.74%1.47%1.47%100%
AmericanORDDFW48210.03%4.12%5.16%85.01%
American EagleTYRDFW4824.6%0.14%5.16%100%
American EagleDFWTYR4804.6%5.16%0.14%100%
SouthwestSANOAK47925.74%1.47%1.47%100%
AmericanLAXJFK47110.03%3.21%1.07%97.11%
AmericanJFKLAX47110.03%1.07%3.21%96.12%
SouthwestLASSAN47025.74%3.22%1.47%92.52%
Atlantic SoutheastATLGNV4694.57%5.17%0.14%100%
AmericanDFWORD46210.03%5.16%4.12%86.19%
NorthwestMSPDTW4619.74%2.83%2.37%100%
American EagleDFWSPS4574.6%5.16%0.13%100%
American EagleSPSDFW4564.6%0.13%5.16%100%
SouthwestONTPHX45325.74%0.77%3.62%81.92%
SouthwestSANLAS45125.74%1.47%3.22%91.11%
NorthwestMSPSEA4499.74%2.83%2.03%100%
American EagleDFWCLL4484.6%5.16%0.13%100%
SouthwestSJCLAX44625.74%1.11%3.21%90.1%
American EagleCLLDFW4454.6%0.13%5.16%100%
SouthwestMSYHOU44225.74%0.95%0.99%100%
SouthwestPVDBWI44125.74%0.69%2.08%99.1%
NorthwestSEAMSP4359.74%2.03%2.83%100%
SouthwestONTOAK43325.74%0.77%1.47%100%
American EagleLAWDFW4294.6%0.12%5.16%100%
SouthwestSMFSAN42825.74%1.04%1.47%100%
AlaskaLAXSEA4242.45%3.21%2.03%77.23%
American EagleDFWLAW4234.6%5.16%0.12%100%
USAirPHLBOS42310.93%2.23%1.68%91.56%
SouthwestLAXSJC41925.74%3.21%1.11%88.21%
AlaskaSEALAX4182.45%2.03%3.21%79.17%
NorthwestMSPLAX4179.74%2.83%3.21%100%
UnitedDENORD4169.5%2.08%4.12%70.75%
SouthwestMDWSTL41325.74%1.92%1.19%100%
SouthwestRNOLAS41325.74%0.58%3.22%96.72%
SouthwestSMFONT41225.74%1.04%0.77%100%
NorthwestLAXMSP4129.74%3.21%2.83%100%
SouthwestPHXABQ41125.74%3.62%0.8%65.87%
SouthwestOAKONT41125.74%1.47%0.77%100%
USAirBOSPHL40910.93%1.68%2.24%91.09%
SouthwestBWIPVD40925.74%2.09%0.68%99.03%
UnitedDCAORD4089.5%1.94%4.12%74.05%
UnitedLAXORD4089.5%3.21%4.12%73.51%
UnitedORDDCA4089.5%4.12%1.94%72.47%
UnitedORDDEN4079.5%4.12%2.09%70.66%
DeltaHSVATL4069.32%0.18%5.18%81.36%
SouthwestBUROAK40525.74%0.56%1.47%100%
DeltaATLHSV4039.32%5.17%0.18%79.64%
SouthwestBWIISP40125.74%2.09%0.38%100%
SouthwestPHXSAN40025.74%3.62%1.47%84.03%
NorthwestDTWMCO4009.74%2.36%1.97%100%
SouthwestSANSMF39625.74%1.47%1.04%100%
AmericanORDLGA39210.03%4.12%2.21%61.25%
UnitedDENIAD3919.5%2.08%1.13%100%
SouthwestISPBWI38725.74%0.37%2.08%100%
Atlantic SoutheastATLMYR3874.57%5.17%0.18%100%
NorthwestMCODTW3869.74%1.97%2.37%99.74%
Atlantic SoutheastATLVPS3854.57%5.17%0.12%99.74%
SouthwestLASBUR38425.74%3.22%0.57%98.97%
SouthwestLASOAK38225.74%3.22%1.47%90.52%
UnitedORDLAX3829.5%4.12%3.21%73.04%
SouthwestBWIBNA38125.74%2.09%1.24%100%
SouthwestONTSMF38025.74%0.77%1.04%100%
SouthwestDALHOU38025.74%0.48%0.99%100%
SouthwestPHXONT38025.74%3.62%0.77%77.39%
Atlantic SoutheastMYRATL3744.57%0.18%5.18%100%
AmericanLGAORD37410.03%2.21%4.12%61.61%
SouthwestSMFLAX37425.74%1.04%3.21%90.78%
SouthwestBURLAS37325.74%0.56%3.22%98.94%
Atlantic SoutheastVPSATL3724.57%0.11%5.18%99.73%
American EagleILEDFW3724.6%0.12%5.16%89.21%
SouthwestSTLMDW37225.74%1.19%1.92%100%
SouthwestFLLTPA37125.74%1.05%1.41%99.2%
American EagleDFWILE3704.6%5.16%0.12%89.16%
SouthwestLASRNO37025.74%3.22%0.58%93.91%
SouthwestOAKBUR36725.74%1.47%0.57%100%
SouthwestSJCSAN36625.74%1.11%1.47%86.52%
UnitedIADDEN3639.5%1.14%2.09%100%
American EagleSHVDFW3604.6%0.12%5.16%99.72%
SouthwestHOUDAL35925.74%0.99%0.48%100%
NorthwestMSPDEN3579.74%2.83%2.09%93.95%
American EagleDFWSHV3564.6%5.16%0.12%99.72%
DeltaATLTPA3559.32%5.17%1.41%100%
DeltaTPAATL3549.32%1.42%5.18%100%
SouthwestBWIMHT35125.74%2.09%0.47%100%
SouthwestLAXSMF34525.74%3.21%1.04%90.31%
SouthwestMHTBWI34325.74%0.47%2.08%100%
UnitedDENLAS3439.5%2.08%3.22%82.85%
SouthwestOAKLAS33925.74%1.47%3.22%90.4%
AmericanAUSDFW33710.03%0.61%5.16%100%
NorthwestLASMSP3359.74%3.22%2.83%91.03%
UnitedLASDEN3359.5%3.22%2.09%84.6%
DeltaATLMIA3329.32%5.17%0.69%78.49%
AmericanDFWAUS33010.03%5.16%0.61%100%
UnitedIADLAX3309.5%1.14%3.21%53.66%
DeltaMIAATL3279.32%0.69%5.18%79.76%
NorthwestDENMSP3259.74%2.08%2.83%91.04%
SouthwestBNABWI32525.74%1.24%2.08%100%
Atlantic SoutheastATLDHN3244.57%5.17%0.09%100%
SouthwestTPAFLL32425.74%1.42%1.05%99.69%
SouthwestLASONT32325.74%3.22%0.77%93.9%
Atlantic SoutheastDHNATL3234.57%0.09%5.18%100%
SouthwestABQPHX32025.74%0.8%3.62%60.04%
NorthwestMSPLAS3179.74%2.83%3.22%91.88%
SouthwestSANSJC31525.74%1.47%1.11%86.78%
UnitedSFOORD3159.5%1.31%4.12%80.15%
UnitedORDLAS3149.5%4.12%3.22%73.02%
UnitedLASORD3069.5%3.22%4.12%74.82%
NorthwestDTWLAX3049.74%2.36%3.21%100%
AmericanDFWSAT30410.03%5.16%0.54%99.35%
DeltaATLJAX3029.32%5.17%0.46%100%
NorthwestMSPBOS2999.74%2.83%1.68%100%
AmericanSATDFW29910.03%0.54%5.16%99.67%
UnitedLASSFO2999.5%3.22%1.32%69.37%
DeltaJAXATL2989.32%0.46%5.18%100%
UnitedSFOLAS2979.5%1.31%3.22%71.22%
American EagleABIDFW2974.6%0.09%5.16%100%
AlaskaSEASAN2972.45%2.03%1.47%100%
NorthwestDCADTW2969.74%1.94%2.37%94.57%
American EagleDFWABI2964.6%5.16%0.09%100%
SouthwestBDLBWI29625.74%0.63%2.08%100%
AlaskaANCSEA2952.45%0.22%2.03%92.19%
NorthwestLAXDTW2959.74%3.21%2.37%100%
DeltaATLRSW2889.32%5.17%0.34%100%
DeltaRSWATL2879.32%0.34%5.18%100%
NorthwestBOSMSP2879.74%1.68%2.83%100%
AmericanLAXIAD28610.03%3.21%1.13%53.16%
AlaskaSEALAS2852.45%2.03%3.22%69.01%
AmericanIADLAX28510.03%1.14%3.21%46.34%
SouthwestBWIBDL28325.74%2.09%0.63%100%
UnitedORDSFO2829.5%4.12%1.32%77.9%
NorthwestSFOMSP2829.74%1.31%2.83%100%
SouthwestBWIMDW28225.74%2.09%1.92%100%
NorthwestMSPPHX2819.74%2.83%3.62%78.71%
NorthwestMSPSFO2819.74%2.83%1.32%100%
NorthwestBOSDTW2819.74%1.68%2.37%100%
DeltaMCOATL2819.32%1.97%5.18%100%
NorthwestMCOMSP2819.74%1.97%2.83%100%
USAirPHLPIT28110.93%2.23%1.32%89.49%
UnitedORDIAD2819.5%4.12%1.13%100%
NorthwestMSPMCO2799.74%2.83%1.97%100%
SouthwestBURSMF27925.74%0.56%1.04%100%
USAirIAHPHL27810.93%1.92%2.24%75.54%
UnitedLAXDEN2779.5%3.21%2.09%81.95%
AlaskaLASSEA2772.45%3.22%2.03%65.8%
USAirPITPHL27710.93%1.31%2.24%91.12%
NorthwestLGADTW2769.74%2.21%2.37%100%
USAirCLTDCA27510.93%2.06%1.94%100%
USAirCLTLGA27510.93%2.06%2.21%97.52%
DeltaATLDFW2759.32%5.17%5.16%62.08%
AlaskaSEAANC2742.45%2.03%0.22%84.57%
SouthwestSLCLAS27425.74%0.8%3.22%71.73%
NorthwestMSPLGA2739.74%2.83%2.21%100%
NorthwestIAHDTW2729.74%1.92%2.37%77.27%
SouthwestSEAOAK27125.74%2.03%1.47%57.42%
SouthwestONTLAS27025.74%0.77%3.22%89.4%
NorthwestDTWBOS2699.74%2.36%1.68%100%
SouthwestLASSMF26925.74%3.22%1.04%82.26%
DeltaDFWATL2689.32%5.16%5.18%59.96%
SouthwestBNAHOU26825.74%1.24%0.99%100%
UnitedIADMCO2679.5%1.14%1.97%70.63%
DeltaATLMCO2649.32%5.17%1.97%100%
NorthwestPHXMSP2639.74%3.62%2.83%78.74%
NorthwestMKEMSP2639.74%0.33%2.83%100%
SouthwestMDWBWI26225.74%1.92%2.08%100%
SouthwestPHXSTL26225.74%3.62%1.19%70.24%
UnitedMCOIAD2619.5%1.97%1.13%70.92%
SouthwestSMFBUR26025.74%1.04%0.57%100%
SouthwestPHXBUR26025.74%3.62%0.57%72.83%
USAirLGACLT26010.93%2.21%2.06%96.65%
USAirDCACLT26010.93%1.94%2.06%100%
American EagleDFWGGG2584.6%5.16%0.07%100%
SouthwestLAXABQ25825.74%3.21%0.8%100%
American EagleGGGDFW2584.6%0.07%5.16%100%
UnitedMCOORD2579.5%1.97%4.12%74.71%
SouthwestBWIMCO25625.74%2.09%1.97%98.46%
SouthwestSMFLAS25625.74%1.04%3.22%81.53%
SouthwestLASSLC25625.74%3.22%0.79%76.88%
SouthwestBWIBUF25625.74%2.09%0.36%100%
SouthwestMCOFLL25625.74%1.97%1.05%96.97%
USAirCLTRDU25510.93%2.06%0.71%100%
UnitedLASLAX2559.5%3.22%3.21%23.77%
SouthwestBUFBWI25525.74%0.36%2.08%100%
DeltaCAEATL2549.32%0.11%5.18%98.83%
SouthwestOAKSEA25325.74%1.47%2.03%55.12%
AmericanDFWSFO25210.03%5.16%1.32%82.89%
UnitedLAXIAD2529.5%3.21%1.13%46.84%
NorthwestDTWIAH2529.74%2.36%1.92%75.45%
UnitedORDSAN2519.5%4.12%1.47%53.63%
SouthwestSATHOU25025.74%0.54%0.99%100%
UnitedLAXLAS2509.5%3.21%3.22%24.06%
UnitedSANORD2509.5%1.47%4.12%54%
America WestPHXSMF2492.83%3.62%1.04%51.98%
NorthwestDTWTPA2499.74%2.36%1.41%100%
USAirRICCLT24810.93%0.27%2.06%100%
UnitedORDLGA2489.5%4.12%2.21%38.75%
USAirDFWPIT24710.93%5.16%1.32%70.37%
UnitedIADORD2479.5%1.14%4.12%100%
USAirRDUCLT24710.93%0.71%2.06%100%
AlaskaSANSEA2472.45%1.47%2.03%100%
DeltaATLCAE2479.32%5.17%0.11%97.24%
AlaskaSJCSEA2462.45%1.11%2.03%63.73%
SouthwestMDWDTW24525.74%1.92%2.37%96.08%
USAirPHLIAH24510.93%2.23%1.92%72.06%
NorthwestLGAMSP2459.74%2.21%2.83%100%
AmericanSANDFW24510.03%1.47%5.16%100%
USAirLGAPIT24510.93%2.21%1.32%100%
AmericanDFWLAX24510.03%5.16%3.21%69.41%
UnitedORDMCO2449.5%4.12%1.97%75.08%
AlaskaGEGSEA2442.45%0.27%2.03%54.95%
NorthwestMSPDCA2449.74%2.83%1.94%100%
SouthwestMCOBWI24225.74%1.97%2.08%99.59%
NorthwestMHTDTW2429.74%0.47%2.37%100%
DeltaTLHATL2429.32%0.08%5.18%94.9%
AmericanDCADFW24110.03%1.94%5.16%80.6%
NorthwestDTWMHT2419.74%2.36%0.47%100%
America WestPHXDEN2412.83%3.62%2.09%51.83%
DeltaFLLATL2409.32%1.05%5.18%100%
SouthwestBURSJC24025.74%0.56%1.11%100%
AlaskaSEASJC2402.45%2.03%1.11%65.22%
USAirLGADCA24010.93%2.21%1.94%11.2%
Atlantic SoutheastATLGPT2394.57%5.17%0.08%99.58%
NorthwestDTWLGA2399.74%2.36%2.21%100%
AmericanDFWSEA23910.03%5.16%2.03%94.84%
DeltaATLTLH2399.32%5.17%0.08%94.47%
Atlantic SoutheastGPTATL2384.57%0.08%5.18%99.58%
SouthwestELPPHX23725.74%0.42%3.62%70.54%
AlaskaSEAPHX2372.45%2.03%3.62%59.7%
AlaskaPHXSEA2362.45%3.62%2.03%61.78%
SouthwestLASMDW23625.74%3.22%1.92%89.39%
SouthwestSJCONT23625.74%1.11%0.77%100%
SouthwestMDWCLE23625.74%1.92%1.49%76.87%
JetblueJFKFLL2361.4%1.07%1.05%71.52%
DeltaATLFLL2359.32%5.17%1.05%100%
NorthwestMSPMKE2359.74%2.83%0.33%100%
JetblueFLLJFK2351.4%1.05%1.07%72.98%
UnitedIADSFO2359.5%1.14%1.32%100%
AmericanSEADFW23310.03%2.03%5.16%91.37%
AlaskaSEAGEG2332.45%2.03%0.27%55.88%
UnitedSEAORD2339.5%2.03%4.12%53.56%
UnitedLGAORD2339.5%2.21%4.12%38.39%
SouthwestMDWLAS23225.74%1.92%3.22%88.55%
AmericanDFWSAN23210.03%5.16%1.47%100%
SouthwestONTSJC23225.74%0.77%1.11%100%
America WestDENPHX2312.83%2.08%3.62%52.62%
SouthwestPHXSMF23025.74%3.62%1.04%48.02%
SouthwestBWIALB23025.74%2.09%0.32%100%
AmericanLAXDFW22910.03%3.21%5.16%60.74%
USAirPITDFW22910.93%1.31%5.16%68.98%
DeltaATLLGA2299.32%5.17%2.21%97.86%
SouthwestALBBWI22625.74%0.32%2.08%100%
SouthwestBWIPHX22625.74%2.09%3.62%100%
USAirDCABOS22610.93%1.94%1.68%97.84%
America WestSMFPHX2252.83%1.04%3.62%50.22%
SouthwestHOUSTL22525.74%0.99%1.19%100%
AmericanDFWDCA22510.03%5.16%1.94%78.4%
DeltaMCOBOS2259.32%1.97%1.68%73.05%
American EagleSJTDFW2244.6%0.07%5.16%100%
SouthwestMCILAS22425.74%1.18%3.22%98.68%
DeltaMDWATL2249.32%1.92%5.18%100%
UnitedPHXDEN2249.5%3.62%2.09%48.17%
USAirPITLGA22310.93%1.31%2.21%100%
SouthwestSMFPHX22325.74%1.04%3.62%49.78%
Atlantic SoutheastTYSATL2234.57%0.14%5.18%67.58%
DeltaATLMDW2239.32%5.17%1.92%100%
American EagleDFWSJT2224.6%5.16%0.06%100%
NorthwestDTWDCA2229.74%2.36%1.94%92.89%
USAirDCALGA22210.93%1.94%2.21%10.46%
DeltaBOSMCO2229.32%1.68%1.97%71.84%
USAirMYRCLT22210.93%0.18%2.06%100%
SouthwestPHXELP22025.74%3.62%0.42%69.4%
NorthwestTPADTW2209.74%1.42%2.37%100%
UnitedTPAORD2209.5%1.42%4.12%75.09%
UnitedORDBOS2209.5%4.12%1.68%53.53%
USAirCLTMYR22010.93%2.06%0.18%100%
Atlantic SoutheastATLTYS2194.57%5.17%0.13%67.59%
NorthwestDTWLAS2199.74%2.36%3.22%100%
UnitedORDPDX2199.5%4.12%1.04%70.42%
UnitedSFOIAD2199.5%1.31%1.13%100%
SouthwestSTLHOU21825.74%1.19%0.99%100%
USAirMHTPHL21810.93%0.47%2.24%80.74%
AmericanORDSAN21710.03%4.12%1.47%46.37%
SouthwestHOUSAT21625.74%0.99%0.54%100%
SouthwestLAXMCI21625.74%3.21%1.18%100%
UnitedPHXORD2149.5%3.62%4.12%57.53%
USAirCLTRIC21410.93%2.06%0.27%100%
SouthwestMDWBNA21425.74%1.92%1.24%100%
UnitedPDXORD2149.5%1.04%4.12%71.33%
UnitedORDTPA2149.5%4.12%1.41%75.09%
SouthwestLASMCI21425.74%3.22%1.18%98.17%
SouthwestFLLMCO21425.74%1.05%1.97%98.17%
NorthwestMSPATL2149.74%2.83%5.18%87.35%
AmericanSANORD21310.03%1.47%4.12%46%
NorthwestSEADTW2139.74%2.03%2.37%100%
SouthwestDTWMDW21325.74%2.36%1.92%93.83%
America WestPHXABQ2132.83%3.62%0.8%34.13%
AmericanDFWTUS21310.03%5.16%0.31%100%
America WestABQPHX2132.83%0.8%3.62%39.96%
SouthwestSTLPHX21325.74%1.19%3.62%65.14%
SouthwestHOUBNA21225.74%0.99%1.24%100%
UnitedORDPHX2129.5%4.12%3.62%57.92%
SouthwestJAXFLL21225.74%0.46%1.05%100%
SouthwestCLEMDW21225.74%1.49%1.92%74.65%
SouthwestPDXSMF21025.74%1.04%1.04%97.67%
SouthwestABQLAS21025.74%0.8%3.22%99.53%
UnitedORDSEA2109.5%4.12%2.03%52.24%
SouthwestDALSAT20925.74%0.48%0.54%100%
USAirPHLMHT20810.93%2.23%0.47%79.09%
AmericanTUSDFW20810.03%0.31%5.16%100%
SouthwestHOUPHX20825.74%0.99%3.62%100%
USAirBOSDCA20810.93%1.68%1.94%98.58%
UnitedDENPHX2089.5%2.08%3.62%47.38%
UnitedDENLAX2069.5%2.08%3.21%71.28%
SouthwestSJCBUR20625.74%1.11%0.57%100%
Atlantic SoutheastVLDATL2064.57%0.06%5.18%100%
AlaskaOAKSEA2062.45%1.47%2.03%44.88%
USAirATLPHL20610.93%5.17%2.24%87.29%
SouthwestMCILAX20625.74%1.18%3.21%100%
AmericanSFODFW20610.03%1.31%5.16%80.47%
SouthwestMSYBHM20525.74%0.95%0.35%100%
NorthwestDTWMKE2059.74%2.36%0.33%100%
SouthwestMSYMCO20425.74%0.95%1.97%100%
USAirDCAPHL20410.93%1.94%2.24%100%
SouthwestOAKPDX20325.74%1.47%1.04%82.86%
NorthwestLASDTW2039.74%3.22%2.37%96.21%
NorthwestATLMSP2039.74%5.17%2.83%80.88%
NorthwestMSPPDX2039.74%2.83%1.04%100%
USAirPHLDCA20310.93%2.23%1.94%100%
UnitedSFODEN2039.5%1.31%2.09%100%
American EagleFSMDFW2024.6%0.06%5.16%100%
American EagleDFWFSM2024.6%5.16%0.06%100%
DeltaSLCATL2029.32%0.8%5.18%100%
AmericanSEAORD20210.03%2.03%4.12%46.44%
NorthwestPDXMSP2019.74%1.04%2.83%100%
AlaskaSEAOAK2012.45%2.03%1.47%42.58%
SouthwestGEGSEA20025.74%0.27%2.03%45.05%
Atlantic SoutheastATLVLD2004.57%5.17%0.06%100%
SouthwestBNARDU19925.74%1.24%0.71%100%
SouthwestABQLAX19825.74%0.8%3.21%100%
SouthwestPHXBWI19825.74%3.62%2.08%100%
DeltaATLSLC1989.32%5.17%0.79%100%
SouthwestAUSHOU19825.74%0.61%0.99%80.49%
SouthwestTPABWI19725.74%1.42%2.08%98.01%
AmericanLGADFW19710.03%2.21%5.16%98.01%
SouthwestRNOSJC19625.74%0.58%1.11%100%
SouthwestBNAMDW19625.74%1.24%1.92%100%
AmericanDFWDEN19610.03%5.16%2.09%68.77%
USAirCHSCLT19510.93%0.14%2.06%100%
UnitedORDSJC1959.5%4.12%1.11%83.69%
NorthwestDTWSEA1949.74%2.36%2.03%100%
USAirPHLMCI19410.93%2.23%1.18%100%
SouthwestMCISTL19425.74%1.18%1.19%97.98%
USAirDFWCLT19410.93%5.16%2.06%57.23%
AlaskaLAXPDX1942.45%3.21%1.04%75.49%
UnitedDENSFO1949.5%2.08%1.32%100%
USAirCLTDFW19310.93%2.06%5.16%56.93%
American EagleTXKDFW1934.6%0.06%5.16%94.15%
American EagleDFWTXK1934.6%5.16%0.06%93.24%
SouthwestBWIRDU19325.74%2.09%0.71%100%
AmericanDENDFW19210.03%2.08%5.16%76.19%
NorthwestDCAMSP1929.74%1.94%2.83%100%
AmericanORDSEA19210.03%4.12%2.03%47.76%
SouthwestABQDAL19225.74%0.8%0.48%100%
UnitedBOSORD1919.5%1.68%4.12%51.62%
AmericanORDBOS19110.03%4.12%1.68%46.47%
AlaskaPDXLAX1912.45%1.04%3.21%80.59%
UnitedDENMCO1919.5%2.08%1.97%100%
AmericanDFWLGA19110.03%5.16%2.21%100%
AmericanDFWPHX19010.03%5.16%3.62%51.49%
SouthwestRDUBWI19025.74%0.71%2.08%100%
SouthwestRDUBNA18925.74%0.71%1.24%100%
UnitedLGADEN1899.5%2.21%2.09%100%
USAirPHLCLT18910.93%2.23%2.06%100%
NorthwestEWRDTW1889.74%1.49%2.37%67.14%
AmericanDFWELP18810.03%5.16%0.42%100%
SouthwestSTLMCI18825.74%1.19%1.18%96.91%
SouthwestSJCRNO18725.74%1.11%0.58%100%
SouthwestOMAMDW18725.74%0.27%1.92%100%
ContinentalEWRATL1872.07%1.49%5.18%80.95%
USAirCLTCHS18710.93%2.06%0.14%100%
USAirPHLRIC18710.93%2.23%0.27%100%
SouthwestPHXSLC18625.74%3.62%0.79%69.92%
SouthwestHOUAUS18625.74%0.99%0.61%76.23%
NorthwestDTWEWR1859.74%2.36%1.5%65.84%
NorthwestBWIDTW1859.74%2.09%2.37%100%
SouthwestFLLJAX18425.74%1.05%0.46%100%
America WestSNALAS1842.83%0.56%3.22%64.56%
SouthwestPDXOAK18425.74%1.04%1.47%80.7%
UnitedMCODEN1849.5%1.97%2.09%100%
DeltaPBIATL1849.32%0.4%5.18%100%
SouthwestSEAGEG18425.74%2.03%0.27%44.12%
ATALGAMDW1840.88%2.21%1.92%98.92%
SouthwestCMHMDW18425.74%0.5%1.92%100%
NorthwestMSPMEM1839.74%2.83%0.65%100%
ATAMDWLGA1830.88%1.92%2.21%98.92%
SouthwestPHXMDW18225.74%3.62%1.92%86.26%
NorthwestPVDDTW1829.74%0.69%2.37%100%
AmericanELPDFW18210.03%0.42%5.16%100%
AmericanPHXDFW18210.03%3.62%5.16%53.85%
UnitedLAXSFO1829.5%3.21%1.32%57.23%
NorthwestMEMMSP1829.74%0.65%2.83%100%
DeltaATLBOS1829.32%5.17%1.68%100%
JetblueMCOJFK1811.4%1.97%1.07%66.06%
SouthwestLASSJC18125.74%3.22%1.11%59.74%
DeltaATLPBI1819.32%5.17%0.4%100%
USAirBOSLGA18110.93%1.68%2.21%14.91%
USAirPHLATL18110.93%2.23%5.18%86.6%
USAirPITCLT18010.93%1.31%2.06%100%
AmericanORDRDU18010.03%4.12%0.71%96.77%
UnitedORDBWI1809.5%4.12%2.08%64.98%
AmericanBOSORD17910.03%1.68%4.12%48.38%
NorthwestDTWPVD1799.74%2.36%0.68%100%
SouthwestMDWOMA17925.74%1.92%0.27%100%
SouthwestMDWCMH17925.74%1.92%0.5%100%
ContinentalATLEWR1792.07%5.17%1.5%83.26%
SouthwestPHXHOU17925.74%3.62%0.99%100%
SouthwestLAXTUS17925.74%3.21%0.31%100%
SouthwestTPAMDW17925.74%1.42%1.92%100%
DeltaLGAATL1799.32%2.21%5.18%97.28%
AmericanDFWATL17910.03%5.16%5.18%40.04%
SouthwestPHXSJC17825.74%3.62%1.11%56.69%
USAirCLTPIT17810.93%2.06%1.32%100%
NorthwestSLCMSP1789.74%0.8%2.83%99.44%
JetblueJFKMCO1781.4%1.07%1.97%68.2%
DeltaBOSATL1779.32%1.68%5.18%100%
UnitedSJCORD1779.5%1.11%4.12%80.45%
USAirPHLDFW17710.93%2.23%5.16%54.13%
SouthwestSLCPHX17725.74%0.8%3.62%69.14%
USAirRDUPHL17610.93%0.71%2.24%80.73%
AmericanORDEWR17610.03%4.12%1.5%45.01%
NorthwestDTWGRR1769.74%2.36%0.15%100%
AmericanEWRORD17610.03%1.49%4.12%51.76%
UnitedBWIORD1769.5%2.09%4.12%66.92%
SouthwestBURPHX17625.74%0.56%3.62%64.71%
America WestDFWPHX1762.83%5.16%3.62%47.7%
NorthwestMDWMSP1769.74%1.92%2.83%51.92%
SouthwestBWIORF17525.74%2.09%0.26%100%
Continental ExpressCLEHPN1754.66%1.49%0.09%100%
NorthwestMSPSLC1759.74%2.83%0.79%98.87%
SouthwestSMFPDX17525.74%1.04%1.04%97.22%
NorthwestDTWBWI1749.74%2.36%2.08%100%
SouthwestBWITPA17425.74%2.09%1.41%98.86%
USAirCLTPHL17410.93%2.06%2.24%100%
America WestPHXSNA1742.83%3.62%0.56%58.59%
UnitedDENSNA1739.5%2.08%0.56%100%
SouthwestORFBWI17325.74%0.26%2.08%100%
NorthwestMSPMDW1739.74%2.83%1.92%51.64%
AmericanRDUORD17310.03%0.71%4.12%96.65%
Continental ExpressHPNCLE1724.66%0.09%1.49%100%
AmericanDENORD17210.03%2.08%4.12%29.25%
USAirDCAPIT17210.93%1.94%1.32%100%
USAirPHLORD17110.93%2.23%4.12%35.33%
SouthwestMSYTPA17125.74%0.95%1.41%100%
UnitedSFOSNA1719.5%1.31%0.56%96.61%
American EagleDFWSGF1704.6%5.16%0.05%100%
AlaskaONTSEA1702.45%0.77%2.03%100%
UnitedDENLGA1709.5%2.08%2.21%100%
American EagleSGFDFW1704.6%0.05%5.16%100%
SouthwestTPAMSY17025.74%1.42%0.94%100%
SouthwestLASABQ17025.74%3.22%0.8%99.42%
USAirLGABOS17010.93%2.21%1.68%14.15%
NorthwestLAXMEM1699.74%3.21%0.65%100%
SouthwestMCOPVD16925.74%1.97%0.68%71.61%
America WestSNAPHX1692.83%0.56%3.62%55.05%
AmericanORDDEN16910.03%4.12%2.09%29.34%
SouthwestPHXMCI16925.74%3.62%1.18%50.6%
AmericanDFWSJC16910.03%5.16%1.11%100%
SouthwestOAKRNO16925.74%1.47%0.58%100%
AmericanTPADFW16910.03%1.42%5.16%98.26%
AmericanATLDFW16810.03%5.17%5.16%37.92%
AmericanDFWIAH16810.03%5.16%1.92%49.41%
AmericanBOSDFW16810.03%1.68%5.16%98.82%
SouthwestMCOMSY16725.74%1.97%0.94%100%
SouthwestPHXOAK16725.74%3.62%1.47%57.39%
UnitedIADTPA1679.5%1.14%1.41%100%
USAirPHLRDU16710.93%2.23%0.71%76.96%
UnitedORDEWR1679.5%4.12%1.5%42.71%
AmericanEWRDFW16710.03%1.49%5.16%90.27%
AmericanDFWTPA16710.03%5.16%1.41%96.53%
America WestMCIPHX1662.83%1.18%3.62%53.9%
America WestPHXIAH1662.83%3.62%1.92%90.71%
SouthwestTUSLAX16625.74%0.31%3.21%100%
NorthwestMKEDTW1669.74%0.33%2.37%100%
NorthwestDTWDFW1659.74%2.36%5.16%57.49%
NorthwestIAHMSP1659.74%1.92%2.83%71.74%
America WestPHXMCI1652.83%3.62%1.18%49.4%
NorthwestGRRDTW1659.74%0.15%2.37%100%
DeltaATLSAV1659.32%5.17%0.12%99.4%
NorthwestDTWMEM1659.74%2.36%0.65%100%
NorthwestDFWDTW1659.74%5.16%2.37%58.51%
SouthwestMDWPHX16425.74%1.92%3.62%83.25%
AmericanSTLORD16410.03%1.19%4.12%95.91%
DeltaSAVATL1649.32%0.12%5.18%99.39%
USAirJAXCLT16410.93%0.46%2.06%100%
UnitedDENRNO1649.5%2.08%0.58%100%
America WestLAXLAS1632.83%3.21%3.22%15.69%
Continental ExpressABECLE1634.66%0.15%1.49%100%
NorthwestORDMSP1639.74%4.12%2.83%57.8%
ATAMDWMSP1630.88%1.92%2.83%48.08%
Continental ExpressCLEABE1634.66%1.49%0.15%100%
SouthwestDTWSTL16325.74%2.36%1.19%94.77%
USAirBOSCLT16310.93%1.68%2.06%100%
NorthwestMCOMEM1639.74%1.97%0.65%100%
America WestPDXPHX1632.83%1.04%3.62%43.47%
AmericanDFWABQ16310.03%5.16%0.8%100%
AmericanSJCDFW16310.03%1.11%5.16%100%
SouthwestSMFSNA16325.74%1.04%0.56%64.68%
ATAMSPMDW1620.88%2.83%1.92%48.36%
SouthwestRNOOAK16125.74%0.58%1.47%100%
UnitedTPAIAD1619.5%1.42%1.13%99.38%
USAirMCIPHL16110.93%1.18%2.24%100%
Continental ExpressCLELGA1614.66%1.49%2.21%72.52%
USAirPITDCA16110.93%1.31%1.94%100%
UnitedDENSEA1619.5%2.08%2.03%95.27%
AmericanABQDFW16110.03%0.8%5.16%85.64%
DeltaSLCCVG1619.32%0.8%0.96%100%
USAirROCPHL16110.93%0.21%2.24%100%
USAirCLTIAD16010.93%2.06%1.13%100%
AmericanAUSORD16010.03%0.61%4.12%96.97%
SouthwestOAKSNA16025.74%1.47%0.56%100%
AmericanDFWBOS16010.03%5.16%1.68%99.38%
SouthwestCLEBNA16025.74%1.49%1.24%80.81%
USAirRICPHL16010.93%0.27%2.24%100%
AmericanDFWEWR16010.03%5.16%1.5%91.95%
UnitedPHLORD1609.5%2.23%4.12%33.06%
Continental ExpressLGACLE1604.66%2.21%1.49%75.83%
UnitedSEADEN1599.5%2.03%2.09%95.21%
USAirIADCLT15910.93%1.14%2.06%100%
UnitedSFOPHX1599.5%1.31%3.62%54.64%
AmericanORDSTL15910.03%4.12%1.19%94.08%
America WestPHXLAX1592.83%3.62%3.21%21.57%
AmericanDFWRDU15910.03%5.16%0.71%100%
UnitedSNAORD1599.5%0.56%4.12%98.76%
SouthwestBWISDF15925.74%2.09%0.29%100%
USAirCLTBWI15810.93%2.06%2.08%100%
SouthwestOAKSLC15825.74%1.47%0.79%100%
SouthwestSJCLAS15825.74%1.11%3.22%55.83%
AmericanMSYDFW15810.03%0.95%5.16%92.4%
SouthwestFLLBWI15825.74%1.05%2.08%100%
AmericanDFWMCI15810.03%5.16%1.18%100%
AmericanDFWMSY15810.03%5.16%0.94%100%
USAirORDPHL15810.93%4.12%2.24%34.35%
AmericanMCIDFW15810.03%1.18%5.16%100%
UnitedDENEWR1579.5%2.08%1.5%85.79%
America WestLASSNA1572.83%3.22%0.56%60.38%
SouthwestSJCPHX15725.74%1.11%3.62%54.33%
SouthwestBHMMSY15725.74%0.35%0.94%100%
SouthwestMDWTPA15725.74%1.92%1.41%100%
DeltaATLRIC1579.32%5.17%0.27%100%
NorthwestLGAMEM1579.74%2.21%0.65%100%
UnitedSFOLAX1579.5%1.31%3.21%53.4%
SouthwestMDWSDF15725.74%1.92%0.29%100%
UnitedORDSJU1579.5%4.12%0.19%99.37%
NorthwestMEMLGA1569.74%0.65%2.21%100%
NorthwestMSPIAH1569.74%2.83%1.92%69.96%
NorthwestPHXDTW1569.74%3.62%2.37%80.41%
AmericanRDUDFW15610.03%0.71%5.16%100%
Atlantic SoutheastLEXATL1564.57%0.09%5.18%93.41%
UnitedDENSAN1569.5%2.08%1.47%100%
USAirCLTORD15610.93%2.06%4.12%76.85%
America WestPHXDFW1562.83%3.62%5.16%46.15%
Continental ExpressCLEDAY1554.66%1.49%0.12%100%
American EagleGRKDFW1544.6%0.05%5.16%100%
AlaskaSEABUR1542.45%2.03%0.57%100%
USAirDFWPHL15410.93%5.16%2.24%52.74%
DeltaRICATL1549.32%0.27%5.18%100%
SouthwestMDWISP15425.74%1.92%0.38%100%
SouthwestCLEBWI15425.74%1.49%2.08%74.4%
SouthwestELPLAX15425.74%0.42%3.21%100%
USAirCLTIAH15410.93%2.06%1.92%70.32%
American EagleDFWGRK1534.6%5.16%0.05%100%
UnitedDENMIA1539.5%2.08%0.69%95.03%
AmericanPHLORD15310.03%2.23%4.12%31.61%
NorthwestDTWORD1539.74%2.36%4.12%49.84%
AmericanORDPHL15310.03%4.12%2.24%33.26%
SouthwestSNAOAK15225.74%0.56%1.47%100%
NorthwestDENDTW1529.74%2.08%2.37%82.16%
America WestIAHPHX1522.83%1.92%3.62%90.48%
SouthwestHOULAS15225.74%0.99%3.22%100%
NorthwestMEMMCO1529.74%0.65%1.97%100%
DeltaLAXATL1519.32%3.21%5.18%91.52%
USAirCLTJAX15110.93%2.06%0.46%100%
Atlantic SoutheastATLLEX1514.57%5.17%0.09%93.21%
SouthwestBNALAX15125.74%1.24%3.21%81.18%
UnitedSNADEN1509.5%0.56%2.09%100%
SouthwestMDWMCO15025.74%1.92%1.97%87.72%
SouthwestSDFBWI15025.74%0.29%2.08%100%
DeltaLASATL1509.32%3.22%5.18%97.4%
SouthwestINDMDW15025.74%0.65%1.92%90.91%
UnitedSNASFO1509.5%0.56%1.32%96.15%
SouthwestSEASMF15025.74%2.03%1.04%54.15%
AmericanPHLDFW15010.03%2.23%5.16%45.87%
USAirPVDPHL15010.93%0.69%2.24%71.09%
SouthwestBNALAS14925.74%1.24%3.22%100%
USAirORDCLT14910.93%4.12%2.06%74.87%
USAirPVDDCA14910.93%0.69%1.94%100%
SouthwestPVDMCO14925.74%0.69%1.97%69.63%
UnitedORDPHL1499.5%4.12%2.24%32.39%
SouthwestSDFMDW14925.74%0.29%1.92%100%
SouthwestDALAUS14925.74%0.48%0.61%100%
JetblueJFKLGB1491.4%1.07%0.19%100%
AmericanJFKSFO14810.03%1.07%1.32%91.93%
UnitedDENBOS1489.5%2.08%1.68%90.8%
NorthwestDTWPHX1489.74%2.36%3.62%69.81%
SouthwestSATPHX14825.74%0.54%3.62%82.68%
UnitedRNODEN1489.5%0.58%2.09%100%
SouthwestTPABNA14725.74%1.42%1.24%100%
UnitedMSYDEN1479.5%0.95%2.09%100%
USAirCLTATL14710.93%2.06%5.18%54.65%
UnitedSANDEN1479.5%1.47%2.09%100%
AmericanLAXORD14710.03%3.21%4.12%26.49%
SouthwestSNASMF14725.74%0.56%1.04%68.06%
SouthwestLASHOU14625.74%3.22%0.99%100%
SouthwestAUSDAL14625.74%0.61%0.48%100%
AmericanCLTDFW14610.03%2.06%5.16%43.07%
DeltaMCOEWR1469.32%1.97%1.5%90.12%
USAirPHLPVD14610.93%2.23%0.68%73%
USAirTPACLT14510.93%1.42%2.06%100%
AlaskaSEAONT1452.45%2.03%0.77%100%
SouthwestPDXGEG14525.74%1.04%0.27%100%
USAirPITBOS14510.93%1.31%1.68%100%
AmericanDFWCLT14510.03%5.16%2.06%42.77%
USAirBDLPHL14510.93%0.63%2.24%83.33%
AmericanMIAJFK14410.03%0.69%1.07%100%
SouthwestBNAMCO14425.74%1.24%1.97%74.61%
UnitedLASIAD1449.5%3.22%1.13%100%
JetblueLGBJFK1441.4%0.19%1.07%100%
AmericanJFKMIA14410.03%1.07%0.69%100%
AmericanPHXORD14310.03%3.62%4.12%38.44%
SouthwestBNADTW14325.74%1.24%2.37%90.51%
UnitedBOSDEN1439.5%1.68%2.09%91.67%
American EagleLITDFW1434.6%0.25%5.16%59.58%
SouthwestSTLDTW14325.74%1.19%2.37%94.08%
DeltaATLSEA1439.32%5.17%2.03%100%
SouthwestSATDAL14325.74%0.54%0.48%100%
AmericanDFWONT14210.03%5.16%0.77%100%
SouthwestMCIPHX14225.74%1.18%3.62%46.1%
AmericanSFOJFK14210.03%1.31%1.07%94.04%
AmericanONTDFW14210.03%0.77%5.16%100%
SouthwestGEGPDX14225.74%0.27%1.04%100%
SouthwestAUSPHX14125.74%0.61%3.62%61.3%
AmericanORDLAX14110.03%4.12%3.21%26.96%
SouthwestSLCOAK14125.74%0.8%1.47%100%
DeltaMDTATL1419.32%0.17%5.18%90.38%
NorthwestMEMLAX1419.74%0.65%3.21%100%
American EagleDFWLIT1414.6%5.16%0.25%59.24%
UnitedDENONT1419.5%2.08%0.77%100%
SouthwestPHXAUS14125.74%3.62%0.61%61.3%
DeltaATLABE1419.32%5.17%0.15%95.92%
NorthwestMSPEWR1419.74%2.83%1.5%76.63%
SouthwestOAKPHX14125.74%1.47%3.62%52.81%
Continental ExpressMDTCLE1404.66%0.17%1.49%100%
UnitedTPADEN1409.5%1.42%2.09%100%
NorthwestTPAMSP1409.74%1.42%2.83%100%
UnitedPDXDEN1409.5%1.04%2.09%95.89%
UnitedPHXSFO1409.5%3.62%1.32%54.05%
AlaskaLASPDX1402.45%3.22%1.04%47.78%
USAirCLTBNA14010.93%2.06%1.24%100%
AlaskaBURSEA1402.45%0.56%2.03%100%
NorthwestSFODTW1399.74%1.31%2.37%100%
NorthwestDTWIND1399.74%2.36%0.65%100%
SouthwestLAXSLC13925.74%3.21%0.79%68.14%
UnitedSMFORD1399.5%1.04%4.12%97.89%
Continental ExpressCLEMDT1394.66%1.49%0.17%100%
AlaskaSANPDX1392.45%1.47%1.04%100%
USAirPITIAH13910.93%1.31%1.92%83.23%
SouthwestSMFSEA13925.74%1.04%2.03%52.26%
AmericanORDAUS13910.03%4.12%0.61%93.92%
NorthwestMEMDTW1399.74%0.65%2.37%100%
America WestPHXPDX1392.83%3.62%1.04%37.87%
AmericanDFWPHL13810.03%5.16%2.24%47.26%
JetblueJFKPBI1381.4%1.07%0.4%82.63%
Continental ExpressDAYCLE1384.66%0.12%1.49%100%
AlaskaSEARNO1382.45%2.03%0.58%53.49%
UnitedDENTPA1389.5%2.08%1.41%100%
SouthwestMCOMDW13825.74%1.97%1.92%85.19%
NorthwestDTWBDL1389.74%2.36%0.63%100%
UnitedORDSMF1389.5%4.12%1.04%96.5%
USAirCLTTPA13810.93%2.06%1.41%100%
JetbluePBIJFK1381.4%0.4%1.07%82.63%
UnitedDENMSY1389.5%2.08%0.94%100%
AmericanIAHDFW13810.03%1.92%5.16%45.25%
DeltaATLLAX1389.32%5.17%3.21%89.61%
USAirIAHCLT13810.93%1.92%2.06%67.65%
AmericanORDPHX13810.03%4.12%3.62%37.7%
SouthwestJANHOU13825.74%0.1%0.99%100%
SouthwestSNAPHX13825.74%0.56%3.62%44.95%
NorthwestANCMSP1379.74%0.22%2.83%100%
SouthwestMCIMCO13725.74%1.18%1.97%75.27%
SouthwestISPMDW13725.74%0.37%1.92%100%
NorthwestDTWMIA1379.74%2.36%0.69%98.56%
SouthwestDTWBNA13725.74%2.36%1.24%84.57%
USAirBNACLT13610.93%1.24%2.06%100%
UnitedIADLAS1369.5%1.14%3.22%100%
NorthwestMEMTPA1369.74%0.65%1.41%100%
America WestPHXLAS1362.83%3.62%3.22%17.5%
America WestLASLAX1362.83%3.22%3.21%12.67%
SouthwestLAXBNA13625.74%3.21%1.24%75.14%
SouthwestBWICLE13625.74%2.09%1.49%74.32%
UnitedONTDEN1369.5%0.77%2.09%100%
DeltaEWRMCO1369.32%1.49%1.97%88.89%
USAirTPAPHL13610.93%1.42%2.24%81.93%
NorthwestBDLDTW1369.74%0.63%2.37%100%
NorthwestFLLDTW1359.74%1.05%2.37%100%
America WestOMAPHX1352.83%0.27%3.62%68.53%
SouthwestINDBWI13525.74%0.65%2.08%100%
SouthwestMCOMCI13525.74%1.97%1.18%75%
SouthwestPHXRNO13525.74%3.62%0.58%55.33%
AmericanORDMCI13510.03%4.12%1.18%67.16%
SouthwestMCIBWI13525.74%1.18%2.08%100%
DeltaATLMSY1359.32%5.17%0.94%100%
AmericanDFWBNA13510.03%5.16%1.24%100%
SouthwestTUSLAS13525.74%0.31%3.22%92.47%
USAirBDLDCA13410.93%0.63%1.94%100%
America WestPHXOMA1342.83%3.62%0.27%60.36%
American EagleDFWCLE1344.6%5.16%1.49%59.29%
American EagleDFWXNA1344.6%5.16%0.09%76.14%
SouthwestABQSAN13425.74%0.8%1.47%100%
AmericanMCIORD13410.03%1.18%4.12%68.72%
USAirCLTSAV13410.93%2.06%0.12%100%
USAirSAVCLT13410.93%0.12%2.06%100%
AmericanSMFDFW13410.03%1.04%5.16%100%
American EagleCLEDFW1344.6%1.49%5.16%59.82%
NorthwestDTWSFO1349.74%2.36%1.32%100%
SouthwestHOUJAN13425.74%0.99%0.1%100%
AmericanLASDFW13410.03%3.22%5.16%43.65%
NorthwestRSWDTW1339.74%0.34%2.37%100%
USAirCLTMSY13310.93%2.06%0.94%100%
SouthwestLASBNA13325.74%3.22%1.24%100%
NorthwestMSPANC1339.74%2.83%0.22%100%
UnitedDENBWI1339.5%2.08%2.08%100%
NorthwestMSPBWI1339.74%2.83%2.08%100%
AlaskaPDXLAS1332.45%1.04%3.22%50.19%
ContinentalEWRBOS1332.07%1.49%1.68%96.38%
AmericanINDDFW13310.03%0.65%5.16%94.33%
USAirDCABDL13310.93%1.94%0.63%100%
USAirMCIDCA13310.93%1.18%1.94%100%
UnitedSFOSAN1339.5%1.31%1.47%75.57%
USAirDCAPVD13310.93%1.94%0.68%100%
USAirATLCLT13210.93%5.17%2.06%52.17%
SouthwestBNACLE13225.74%1.24%1.49%81.99%
AmericanDFWSMF13210.03%5.16%1.04%100%
USAirMSPPHL13210.93%2.83%2.24%55.93%
AmericanIADDFW13210.03%1.14%5.16%98.51%
SouthwestPHXBNA13225.74%3.62%1.24%100%
USAirPHLBDL13210.93%2.23%0.63%80.98%
America WestLASSFO1322.83%3.22%1.32%30.63%
AmericanDFWIAD13210.03%5.16%1.13%100%
AmericanDFWIND13210.03%5.16%0.65%93.62%
SouthwestPHXOKC13225.74%3.62%0.26%100%
USAirCLTGSO13110.93%2.06%0.14%100%
NorthwestEWRMSP1319.74%1.49%2.83%77.51%
USAirBWICLT13110.93%2.09%2.06%100%
SouthwestBWIFLL13025.74%2.09%1.05%99.24%
America WestLAXPHX1302.83%3.21%3.62%15.87%
NorthwestINDMSP1309.74%0.65%2.83%100%
USAirPHLMSP12910.93%2.23%2.83%55.13%
DeltaMSYATL1299.32%0.95%5.18%100%
DeltaABEMDT1299.32%0.15%0.17%100%
UnitedSJUORD1299.5%0.19%4.12%99.23%
American EagleXNADFW1294.6%0.09%5.16%75.44%
USAirBNAPHL12910.93%1.24%2.24%100%
NorthwestMSPSJC1299.74%2.83%1.11%100%
NorthwestMEMDCA1289.74%0.65%1.94%100%
SouthwestSTLBWI12825.74%1.19%2.08%92.09%
SouthwestBWIIND12825.74%2.09%0.65%100%
ContinentalBOSEWR1282.07%1.68%1.5%96.24%
AmericanDFWOAK12810.03%5.16%1.47%100%
SouthwestSATLAS12825.74%0.54%3.22%100%
SouthwestPBITPA12825.74%0.4%1.41%99.22%
SouthwestBNAPHX12725.74%1.24%3.62%100%
AlaskaSEASMF1272.45%2.03%1.04%45.85%
NorthwestSJCMSP1279.74%1.11%2.83%100%
DeltaBDLMCO1279.32%0.63%1.97%66.15%
USAirCLTBOS12710.93%2.06%1.68%100%
AlaskaSMFSEA1272.45%1.04%2.03%47.74%
SouthwestBWIMCI12725.74%2.09%1.18%100%
USAirMSYCLT12710.93%0.95%2.06%100%
DeltaATLSJU1279.32%5.17%0.19%100%
DeltaSJUATL1279.32%0.19%5.18%100%
AlaskaRNOSEA1272.45%0.58%2.03%50.4%
America WestOAKPHX1262.83%1.47%3.62%47.19%
UnitedSANIAD1269.5%1.47%1.13%91.97%
America WestSJCPHX1262.83%1.11%3.62%43.6%
SouthwestBHMBWI12625.74%0.35%2.08%100%
SouthwestMDWIND12625.74%1.92%0.65%90.65%
AmericanOAKDFW12610.03%1.47%5.16%100%
AmericanBDLORD12610.03%0.63%4.12%51.22%
DeltaMCOBDL1269.32%1.97%0.63%64.29%
UnitedLAXSEA1259.5%3.21%2.03%22.77%
AmericanORDPVD12510.03%4.12%0.68%64.1%
SouthwestISPTPA12525.74%0.37%1.41%93.28%
SouthwestPDXRNO12525.74%1.04%0.58%100%
SouthwestRNOSEA12525.74%0.58%2.03%49.6%
UnitedDENPDX1259.5%2.08%1.04%95.42%
SouthwestMDWPVD12525.74%1.92%0.68%100%
NorthwestDTWFLL1259.74%2.36%1.05%100%
NorthwestDTWDEN1249.74%2.36%2.09%70.45%
SouthwestBNAMCI12425.74%1.24%1.18%100%
NorthwestTPAMEM1249.74%1.42%0.65%100%
SouthwestHOUMDW12425.74%0.99%1.92%100%
ATAMDWDFW1240.88%1.92%5.16%72.94%
America WestPHXOAK1242.83%3.62%1.47%42.61%
USAirCLTMCI12410.93%2.06%1.18%100%
AmericanBNADFW12410.03%1.24%5.16%100%
USAirBUFPHL12410.93%0.36%2.24%100%
NorthwestDTWRSW1249.74%2.36%0.34%100%
USAirDENCLT12310.93%2.08%2.06%97.62%
SouthwestMCIOKC12325.74%1.18%0.26%100%
SouthwestPHXSNA12325.74%3.62%0.56%41.41%
USAirPHLROC12310.93%2.23%0.21%100%
ATADFWMDW1230.88%5.16%1.92%73.21%
USAirPHLCMH12310.93%2.23%0.5%100%
USAirPITDEN12310.93%1.31%2.09%100%
USAirPHXCLT12310.93%3.62%2.06%100%
NorthwestMSNMSP1239.74%0.08%2.83%100%
SouthwestDALLBB12325.74%0.48%0.12%100%
UnitedPHLSFO1239.5%2.23%1.32%73.65%
DeltaATLSAN1239.32%5.17%1.47%100%
USAirCMHPHL12310.93%0.5%2.24%100%
America WestPHXSJC1232.83%3.62%1.11%39.17%
USAirCLTCMH12310.93%2.06%0.5%100%
USAirORFPHL12310.93%0.26%2.24%100%
AmericanPVDORD12210.03%0.69%4.12%63.54%
SouthwestFLLMDW12225.74%1.05%1.92%81.33%
AmericanORDBDL12210.03%4.12%0.63%51.05%
NorthwestMIADTW1229.74%0.69%2.37%98.39%
SouthwestSNASJC12225.74%0.56%1.11%76.25%
AmericanDTWDFW12210.03%2.36%5.16%42.51%
ATAMDWDEN1220.88%1.92%2.09%76.25%
ATADENMDW1220.88%2.08%1.92%77.71%
UnitedMIADEN1229.5%0.69%2.09%85.31%
USAirDCATPA12210.93%1.94%1.41%100%
USAirIAHPIT12210.93%1.92%1.32%82.99%
SouthwestBNATPA12225.74%1.24%1.41%100%
USAirPWMPHL12210.93%0.1%2.24%100%
UnitedATLORD1229.5%5.17%4.12%36.09%
SouthwestMCOSTL12225.74%1.97%1.19%91.04%
NorthwestGRRMSP1219.74%0.15%2.83%100%
UnitedBWIDEN1219.5%2.09%2.09%100%
USAirPITEWR12110.93%1.31%1.5%70.76%
SouthwestSANABQ12125.74%1.47%0.8%100%
USAirILMCLT12110.93%0.04%2.06%100%
USAirALBPHL12110.93%0.32%2.24%100%
JetblueJFKBUF1211.4%1.07%0.36%85.82%
AmericanDFWSTL12110.03%5.16%1.19%100%
DeltaCLTATL1219.32%2.06%5.18%44.98%
USAirCLTILM12110.93%2.06%0.04%100%
SouthwestOKCPHX12125.74%0.26%3.62%100%
NorthwestBWIMSP1219.74%2.09%2.83%100%
AmericanDFWLAS12010.03%5.16%3.22%43.32%
SouthwestLASSAT12025.74%3.22%0.54%100%
NorthwestMSPBOI1209.74%2.83%0.23%100%
SouthwestMSYDAL12025.74%0.95%0.48%100%
America WestSFOLAS1202.83%1.31%3.22%28.78%
SouthwestHOUELP12025.74%0.99%0.42%100%
USAirMCICLT12010.93%1.18%2.06%100%
JetblueBUFJFK1201.4%0.36%1.07%85.71%
UnitedBDLORD1209.5%0.63%4.12%48.78%
USAirPHLALB12010.93%2.23%0.32%100%
UnitedEWRDEN1209.5%1.49%2.09%72.29%
USAirPHLJAX12010.93%2.23%0.46%95.24%
SouthwestSLCBOI12025.74%0.8%0.23%100%
AlaskaPDXSJC1192.45%1.04%1.11%53.36%
AmericanCMHDFW11910.03%0.5%5.16%99.17%
SouthwestMDWFLL11925.74%1.92%1.05%81.51%
America WestLASDFW1192.83%3.22%5.16%38.76%
USAirCMHCLT11910.93%0.5%2.06%100%
AmericanDFWCMH11910.03%5.16%0.5%99.17%
America WestRNOPHX1192.83%0.58%3.62%52.42%
NorthwestBOIMSP1199.74%0.23%2.83%100%
America WestPHXTUS1192.83%3.62%0.31%77.78%
JetblueLGBOAK1191.4%0.19%1.47%100%
USAirEWRPIT11910.93%1.49%1.32%69.19%
America WestLASPHX1192.83%3.22%3.62%15.1%
DeltaATLCLT1199.32%5.17%2.06%47.04%
SouthwestCMHBWI11925.74%0.5%2.08%100%
SouthwestMDWRDU11925.74%1.92%0.71%100%
JetblueJFKTPA1181.4%1.07%1.41%68.21%
DeltaCVGORD1189.32%0.95%4.12%80.27%
SouthwestLITDAL11825.74%0.25%0.48%100%
JetblueTPAJFK1181.4%1.42%1.07%69.41%
UnitedEWRLAX1189.5%1.49%3.21%67.43%
SouthwestSEARNO11825.74%2.03%0.58%45.74%
Atlantic SoutheastROAATL1184.57%0.05%5.18%97.52%
UnitedSANSFO1189.5%1.47%1.32%72.39%
SouthwestSLCLAX11725.74%0.8%3.21%70.48%
SouthwestBWIBHM11725.74%2.09%0.35%100%
SouthwestPHXSAT11725.74%3.62%0.54%79.05%
JetblueOAKLGB1171.4%1.47%0.19%100%
USAirPITRDU11710.93%1.31%0.71%100%
USAirDENPIT11710.93%2.08%1.32%99.15%
USAirDCAMCI11710.93%1.94%1.18%100%
USAirTPADCA11710.93%1.42%1.94%100%
AmericanDFWDTW11710.03%5.16%2.37%41.49%
DeltaCVGATL1179.32%0.95%5.18%92.86%
USAirPHLBUF11710.93%2.23%0.36%100%
NorthwestMSPIND1179.74%2.83%0.65%100%
USAirBOSPIT11710.93%1.68%1.32%100%
UnitedORDBDL1179.5%4.12%0.63%48.95%
American EagleDFWBTR1164.6%5.16%0.08%84.67%
American EagleBTRDFW1164.6%0.08%5.16%93.55%
SouthwestPHXPDX11625.74%3.62%1.04%31.61%
SouthwestTULHOU11625.74%0.29%0.99%100%
USAirORDPIT11610.93%4.12%1.32%73.42%
SouthwestSTLMCO11625.74%1.19%1.97%90.63%
Continental ExpressCVGEWR1164.66%0.95%1.5%67.44%
USAirPHLBNA11610.93%2.23%1.24%100%
ContinentalABQIAH1152.07%0.8%1.92%89.15%
UnitedMIAORD1159.5%0.69%4.12%54.76%
SouthwestLAXELP11525.74%3.21%0.42%100%
USAirPHLPWM11510.93%2.23%0.09%100%
SouthwestMCIBNA11525.74%1.18%1.24%100%
SouthwestABQMCO11525.74%0.8%1.97%100%
SouthwestSJCSEA11525.74%1.11%2.03%29.79%
UnitedORDSNA1159.5%4.12%0.56%100%
ContinentalIAHABQ1142.07%1.92%0.8%89.06%
SouthwestLASTUS11425.74%3.22%0.31%96.61%
SouthwestRDUMDW11425.74%0.71%1.92%100%
AmericanDFWFLL11410.03%5.16%1.05%84.44%
SouthwestOKCMCI11425.74%0.26%1.18%100%
USAirPHLBWI11410.93%2.23%2.08%100%
Atlantic SoutheastATLROA1144.57%5.17%0.05%100%
SouthwestSJCPDX11425.74%1.11%1.04%48.93%
SouthwestSTLLIT11425.74%1.19%0.25%100%
USAirRDUPIT11410.93%0.71%1.32%100%
AlaskaSJCPDX1142.45%1.11%1.04%48.93%
USAirCLTDEN11310.93%2.06%2.09%93.39%
UnitedORDFLL1139.5%4.12%1.05%55.94%
SouthwestISPBNA11325.74%0.37%1.24%100%
NorthwestBDLMSP1139.74%0.63%2.83%100%
NorthwestINDDTW1139.74%0.65%2.37%100%
USAirBWIPIT11310.93%2.09%1.32%100%
AmericanORDLAS11310.03%4.12%3.22%26.28%
DeltaIADATL1139.32%1.14%5.18%77.4%
AlaskaPHXPDX1122.45%3.62%1.04%30.52%
SouthwestDALABQ11225.74%0.48%0.8%100%
SouthwestSJCSNA11225.74%1.11%0.56%73.2%
AmericanCOSDFW11210.03%0.12%5.16%91.8%
DeltaATLIAD1129.32%5.17%1.13%81.16%
AmericanDCAMIA11210.03%1.94%0.69%100%
America WestTUSPHX1122.83%0.31%3.62%77.24%
America WestPHXONT1112.83%3.62%0.77%22.61%
DeltaIADMCO1119.32%1.14%1.97%29.37%
UnitedEWRORD1119.5%1.49%4.12%32.65%
SouthwestRNOPDX11125.74%0.58%1.04%100%
USAirCLTORF11110.93%2.06%0.26%100%
SouthwestBWIJAX11125.74%2.09%0.46%99.11%
NorthwestMSPBDL1119.74%2.83%0.63%100%
Continental ExpressEWRCVG1114.66%1.49%0.96%70.25%
NorthwestMSPGRR1119.74%2.83%0.15%100%
AmericanDFWCOS11010.03%5.16%0.12%92.44%
NorthwestMSPSMF1109.74%2.83%1.04%100%
USAirPHLORF11010.93%2.23%0.26%100%
SouthwestELPAUS11025.74%0.42%0.61%100%
SouthwestMCOALB11025.74%1.97%0.32%91.67%
NorthwestDCAMEM1109.74%1.94%0.65%100%
NorthwestSMFMSP1109.74%1.04%2.83%100%
UnitedSEALAX1109.5%2.03%3.21%20.83%
USAirMSPCLT11010.93%2.83%2.06%100%
SouthwestPVDMDW11025.74%0.69%1.92%100%
USAirPHLDEN11010.93%2.23%2.09%57.29%
AmericanFLLDFW11010.03%1.05%5.16%77.46%
USAirCLTMSP11010.93%2.06%2.83%100%
AlaskaSFOSEA1102.45%1.31%2.03%53.66%
SouthwestLAXMDW10925.74%3.21%1.92%83.21%
UnitedLAXDFW1099.5%3.21%5.16%28.91%
NorthwestABQMSP1099.74%0.8%2.83%100%
NorthwestORDDTW1099.74%4.12%2.37%37.98%
America WestPHXRNO1092.83%3.62%0.58%44.67%
American EagleMAFDFW1094.6%0.12%5.16%99.09%
SouthwestELPSAT10925.74%0.42%0.54%100%
USAirGSOCLT10910.93%0.14%2.06%100%
AlaskaPDXPHX1092.45%1.04%3.62%29.07%
NorthwestMSPABQ1099.74%2.83%0.8%100%
UnitedFLLORD1089.5%1.05%4.12%55.38%
USAirPHLPHX10810.93%2.23%3.62%87.8%
SouthwestELPDAL10825.74%0.42%0.48%100%
SouthwestSANTUS10825.74%1.47%0.31%100%
SouthwestMCOBNA10825.74%1.97%1.24%68.35%
America WestSTLPHX1082.83%1.19%3.62%33.03%
USAirDENPHL10810.93%2.08%2.24%50.23%
DeltaSLCLAS1089.32%0.8%3.22%28.27%
DeltaATLDEN1089.32%5.17%2.09%67.5%
UnitedLAXMCO1089.5%3.21%1.97%91.53%
SouthwestRNOPHX10825.74%0.58%3.62%47.58%
USAirPITATL10710.93%1.31%5.18%94.69%
USAirDCAFLL10710.93%1.94%1.05%86.29%
SouthwestBWISTL10725.74%2.09%1.19%93.04%
NorthwestPHLDTW1079.74%2.23%2.37%53.5%
AmericanMIADCA10710.03%0.69%1.94%100%
SouthwestMCOABQ10725.74%1.97%0.8%100%
DeltaORDATL1079.32%4.12%5.18%33.86%
NorthwestMSPRDU1079.74%2.83%0.71%100%
SouthwestSEABOI10725.74%2.03%0.23%77.54%
DeltaMCOIAD1079.32%1.97%1.13%29.08%
UnitedDENPHL1079.5%2.08%2.24%49.77%
American EagleDFWMAF1074.6%5.16%0.12%99.07%
SouthwestPVDTPA10725.74%0.69%1.41%100%
DeltaBOSFLL1079.32%1.68%1.05%60.8%
SouthwestDALELP10625.74%0.48%0.42%100%
NorthwestONTMSP1069.74%0.77%2.83%100%
SouthwestSEASJC10625.74%2.03%1.11%28.8%
DeltaATLMDT1069.32%5.17%0.17%89.08%
America WestPHXSTL1062.83%3.62%1.19%28.42%
DeltaATLBWI1069.32%5.17%2.08%97.25%
SouthwestABQMCI10625.74%0.8%1.18%100%
AlaskaBURPDX1062.45%0.56%1.04%100%
UnitedMCOLAX1069.5%1.97%3.21%86.18%
DeltaABEATL1069.32%0.15%5.18%96.36%
ContinentalMCOCLE1052.07%1.97%1.49%99.06%
NorthwestMSPORD1059.74%2.83%4.12%46.46%
USAirMSYDCA10510.93%0.95%1.94%100%
NorthwestPHLMSP1059.74%2.23%2.83%44.87%
SouthwestPHXPVD10525.74%3.62%0.68%100%
SouthwestTPAISP10525.74%1.42%0.38%93.75%
NorthwestMSPONT1059.74%2.83%0.77%100%
USAirPITPVD10510.93%1.31%0.68%100%
UnitedEWRSFO1059.5%1.49%1.32%97.22%
DeltaATLLAS1059.32%5.17%3.22%96.33%
SouthwestBNAISP10525.74%1.24%0.38%100%
UnitedBOSIAD1059.5%1.68%1.13%89.74%
SouthwestBOISEA10525.74%0.23%2.03%77.21%
UnitedIADBOS1059.5%1.14%1.68%89.74%
USAirPITPHX10510.93%1.31%3.62%99.06%
Continental ExpressINDCLE1054.66%0.65%1.49%100%
UnitedSEAIAD1049.5%2.03%1.13%100%
American EagleORDLIT1044.6%4.12%0.25%100%
NorthwestMSPPHL1049.74%2.83%2.24%44.07%
Continental ExpressCMHCLE1044.66%0.5%1.49%100%
DeltaATLCLE1049.32%5.17%1.49%64.6%
USAirPITBWI10410.93%1.31%2.08%100%
SouthwestAUSELP10425.74%0.61%0.42%100%
UnitedORDOAK1049.5%4.12%1.47%100%
DeltaBWIATL1039.32%2.09%5.18%91.15%
American EagleLITORD1034.6%0.25%4.12%100%
NorthwestMSPCOS1039.74%2.83%0.12%100%
DeltaSFOATL1039.32%1.31%5.18%66.45%
Continental ExpressCLTEWR1034.66%2.06%1.5%52.55%
DeltaFLLBOS1039.32%1.05%1.68%61.68%
USAirORFCLT10310.93%0.26%2.06%100%
SouthwestPDXPHX10325.74%1.04%3.62%27.47%
NorthwestDFWMSP1039.74%5.16%2.83%50.49%
SouthwestBNAMSY10325.74%1.24%0.94%100%
USAirCLTPHX10310.93%2.06%3.62%100%
DeltaTYSATL1039.32%0.14%5.18%31.21%
NorthwestCOSMSP1039.74%0.12%2.83%100%
ContinentalCLEMCO1032.07%1.49%1.97%99.04%
DeltaATLTYS1039.32%5.17%0.13%31.79%
NorthwestPBIDTW1039.74%0.4%2.37%100%
USAirPHXPIT10310.93%3.62%1.32%99.04%
SouthwestMCITUL10325.74%1.18%0.29%100%
SouthwestALBMCO10325.74%0.32%1.97%90.35%
American EagleLBBDFW1024.6%0.12%5.16%100%
DeltaORDCVG1029.32%4.12%0.96%76.69%
UnitedPHLLAX1029.5%2.23%3.21%63.75%
AmericanSTLDFW10210.03%1.19%5.16%100%
American EagleDFWLBB1024.6%5.16%0.12%100%
SouthwestOAKMDW10225.74%1.47%1.92%100%
Atlantic SoutheastMCNATL1024.57%0.03%5.18%100%
NorthwestDTWPBI1029.74%2.36%0.4%100%
SouthwestTPAPVD10225.74%1.42%0.68%100%
Atlantic SoutheastATLMCN1024.57%5.17%0.03%100%
JetblueOAKJFK1021.4%1.47%1.07%100%
SouthwestISPMCO10225.74%0.37%1.97%68.92%
SouthwestPDXSJC10225.74%1.04%1.11%45.74%
SouthwestLASBWI10125.74%3.22%2.08%100%
SouthwestSANMDW10125.74%1.47%1.92%100%
SouthwestBWIPBI10125.74%2.09%0.4%100%
Continental ExpressCLECMH1014.66%1.49%0.5%100%
UnitedLAXPHL1019.5%3.21%2.24%70.14%
Continental ExpressDTWCLE1014.66%2.36%1.49%83.47%
Continental ExpressCLEDTW1014.66%1.49%2.37%61.59%
NorthwestMSPTPA1019.74%2.83%1.41%100%
UnitedIADSAN1019.5%1.14%1.47%95.28%
SouthwestMDWHOU10125.74%1.92%0.99%100%
AmericanSFOLAX10110.03%1.31%3.21%34.35%
Continental ExpressCLEIND1004.66%1.49%0.65%97.09%
SouthwestTPAPBI10025.74%1.42%0.4%98.04%
SouthwestLASSNA10025.74%3.22%0.56%38.46%
AmericanMIADFW10010.03%0.69%5.16%100%
SouthwestMHTMCO10025.74%0.47%1.97%100%
USAirPITSNA10010.93%1.31%0.56%100%
UnitedSFOPHL1009.5%1.31%2.24%68.97%
AmericanTUSORD10010.03%0.31%4.12%96.15%
SouthwestBWILAS10025.74%2.09%3.22%100%
USAirSNAPIT10010.93%0.56%1.32%100%
UnitedORDMIA1009.5%4.12%0.69%58.14%
SouthwestMDWLAX10025.74%1.92%3.21%81.97%
ATAMDWEWR1000.88%1.92%1.5%83.33%
SouthwestBOIPDX10025.74%0.23%1.04%100%
USAirCLTSTL10010.93%2.06%1.19%100%
America WestONTPHX1002.83%0.77%3.62%18.08%
SouthwestSNALAS10025.74%0.56%3.22%35.09%
ATAEWRMDW990.88%1.49%1.92%84.62%
Continental ExpressEWRCLT994.66%1.49%2.06%50%
AmericanLASORD9910.03%3.22%4.12%24.21%
AmericanPDXDFW9910.03%1.04%5.16%98.02%
USAirSTLCLT9910.93%1.19%2.06%100%
America WestELPPHX992.83%0.42%3.62%29.46%
SouthwestMDWOAK9925.74%1.92%1.47%100%
SouthwestMCIABQ9925.74%1.18%0.8%100%
SouthwestMCOMHT9925.74%1.97%0.47%100%
SouthwestBWIHOU9925.74%2.09%0.99%100%
USAirMCIPIT9910.93%1.18%1.32%100%
UnitedIADSEA999.5%1.14%2.03%100%
NorthwestMEMDEN989.74%0.65%2.09%100%
USAirPHLSYR9810.93%2.23%0.17%100%
SouthwestSEASLC9825.74%2.03%0.79%59.04%
Continental ExpressIAHSTL984.66%1.92%1.19%93.33%
SouthwestSTLSDF9825.74%1.19%0.29%92.45%
SouthwestHOUBWI9825.74%0.99%2.08%100%
SouthwestSLCSEA9825.74%0.8%2.03%67.59%
SouthwestSDFSTL9825.74%0.29%1.19%92.45%
SouthwestLASAUS9825.74%3.22%0.61%100%
SouthwestOMALAS9825.74%0.27%3.22%94.23%
USAirEWRCLT9810.93%1.49%2.06%49.49%
America WestDFWLAS982.83%5.16%3.22%35.38%
USAirPHLTPA9810.93%2.23%1.41%82.35%
USAirPITTPA9710.93%1.31%1.41%97.98%
SouthwestSANBNA9725.74%1.47%1.24%100%
NorthwestDENMEM979.74%2.08%0.65%100%
SouthwestDALTUL9725.74%0.48%0.29%100%
AmericanDFWLGB9710.03%5.16%0.19%100%
SouthwestMCOISP9725.74%1.97%0.38%71.85%
DeltaSANATL979.32%1.47%5.18%100%
DeltaATLSFO979.32%5.17%1.32%68.79%
America WestPHXBUR972.83%3.62%0.57%27.17%
American EagleAMADFW974.6%0.09%5.16%98.98%
JetblueROCJFK971.4%0.21%1.07%75.78%
USAirATLPIT9710.93%5.17%1.32%97%
SouthwestMCIOAK9725.74%1.18%1.47%100%
USAirALBDCA9710.93%0.32%1.94%100%
JetblueJFKROC971.4%1.07%0.21%75.78%
DeltaCVGSLC979.32%0.95%0.79%100%
NorthwestDTWPHL979.74%2.36%2.24%51.6%
American EagleDFWAMA974.6%5.16%0.09%98.98%
America WestPHXELP972.83%3.62%0.42%30.6%
SouthwestMDWSAN9725.74%1.92%1.47%100%
AmericanDFWBUR9610.03%5.16%0.57%100%
USAirSYRPHL9610.93%0.17%2.24%100%
SouthwestABQELP9625.74%0.8%0.42%100%
UnitedPDXSFO969.5%1.04%1.32%59.26%
America WestBURPHX962.83%0.56%3.62%35.29%
ContinentalDFWIAH962.07%5.16%1.92%28.24%
USAirDTWCLT9610.93%2.36%2.06%100%
AmericanBURDFW9610.03%0.56%5.16%100%
USAirPITORD9610.93%1.31%4.12%69.06%
Continental ExpressCLEPHL964.66%1.49%2.24%80%
USAirFLLDCA9610.93%1.05%1.94%84.96%
USAirDCAALB9610.93%1.94%0.32%100%
NorthwestGEGMSP959.74%0.27%2.83%100%
ContinentalPHLIAH952.07%2.23%1.92%27.94%
UnitedBOSSFO959.5%1.68%1.32%65.97%
USAirJAXPHL9510.93%0.46%2.24%94.06%
AlaskaSEASFO952.45%2.03%1.32%53.37%
AmericanORDBWI9510.03%4.12%2.08%34.3%
DeltaATLORD959.32%5.17%4.12%28.11%
NorthwestMSPDFW959.74%2.83%5.16%47.03%
AmericanMIAORD9510.03%0.69%4.12%45.24%
SouthwestJAXBWI9525.74%0.46%2.08%98.96%
DeltaCLEATL959.32%1.49%5.18%62.09%
UnitedOAKORD959.5%1.47%4.12%100%
UnitedSFOSEA959.5%1.31%2.03%46.34%
SouthwestOAKMCI9525.74%1.47%1.18%100%
SouthwestDALLIT9525.74%0.48%0.25%100%
DeltaJFKFLL949.32%1.07%1.05%28.48%
NorthwestMSPGEG949.74%2.83%0.27%100%
DeltaMDTABE949.32%0.17%0.15%100%
JetblueJFKOAK941.4%1.07%1.47%100%
AmericanLGBDFW9410.03%0.19%5.16%100%
AlaskaPDXBUR942.45%1.04%0.57%100%
SouthwestMSYBNA9425.74%0.95%1.24%100%
DeltaRDUATL949.32%0.71%5.18%100%
AmericanDFWPIT9410.03%5.16%1.32%26.78%
Continental ExpressBHMIAH934.66%0.35%1.92%86.11%
UnitedORDDTW939.5%4.12%2.37%32.4%
USAirCLTEWR9310.93%2.06%1.5%47.45%
ContinentalIAHDFW932.07%1.92%5.16%30.49%
USAirPHLDTW9310.93%2.23%2.37%46.5%
Continental ExpressBROIAH934.66%0.03%1.92%98.94%
USAirBWIPHL9310.93%2.09%2.24%100%
SouthwestTUSSAN9325.74%0.31%1.47%100%
SouthwestBNASAN9325.74%1.24%1.47%100%
AmericanDFWBDL9310.03%5.16%0.63%100%
UnitedSFOEWR939.5%1.31%1.5%97.89%
Continental ExpressIAHBRO934.66%1.92%0.03%98.94%
AmericanLAXSFO9310.03%3.21%1.32%29.25%
AmericanDFWSLC9310.03%5.16%0.79%55.36%
JetblueJFKLAS931.4%1.07%3.22%98.94%
USAirSYRPIT9310.93%0.17%1.32%100%
DeltaATLRDU939.32%5.17%0.71%100%
AlaskaPDXSAN922.45%1.04%1.47%100%
SouthwestBWICMH9225.74%2.09%0.5%100%
AmericanORDTUS9210.03%4.12%0.31%96.84%
USAirBDLCLT9210.93%0.63%2.06%100%
AmericanORDPDX9210.03%4.12%1.04%29.58%
SouthwestSATELP9225.74%0.54%0.42%100%
NorthwestMSPRSW929.74%2.83%0.34%100%
JetblueJFKRSW921.4%1.07%0.34%100%
UnitedORDATL929.5%4.12%5.18%29.11%
JetblueRSWJFK921.4%0.34%1.07%100%
NorthwestMSPSNA929.74%2.83%0.56%100%
NorthwestSNAMSP929.74%0.56%2.83%100%
SouthwestHRLHOU9225.74%0.05%0.99%100%
SouthwestOKCHOU9225.74%0.26%0.99%100%
AmericanPITDFW9210.03%1.31%5.16%27.71%
UnitedSFOBOS929.5%1.31%1.68%66.19%
UnitedDFWLAX929.5%5.16%3.21%26.06%
Continental ExpressIAHCRP924.66%1.92%0.05%95.83%
SouthwestAUSLAS9125.74%0.61%3.22%100%
Continental ExpressCRPIAH914.66%0.05%1.92%95.79%
UnitedMHTORD919.5%0.47%4.12%100%
SouthwestMSYFLL9125.74%0.95%1.05%100%
AmericanLAXMIA9110.03%3.21%0.69%69.47%
AmericanMIALAX9110.03%0.69%3.21%64.08%
UnitedORDMHT919.5%4.12%0.47%100%
USAirDTWPHL9110.93%2.36%2.24%48.4%
AmericanDFWPDX9110.03%5.16%1.04%97.85%
American EagleDSMDFW914.6%0.07%5.16%97.85%
AlaskaPDXONT912.45%1.04%0.77%100%
AmericanATLMIA9010.03%5.17%0.69%21.28%
Continental ExpressCLEGRR904.66%1.49%0.15%100%
NorthwestMEMBOS909.74%0.65%1.68%100%
USAirPHXPHL9010.93%3.62%2.24%84.11%
USAirPVDCLT9010.93%0.69%2.06%100%
American EagleDFWDSM904.6%5.16%0.07%97.83%
SouthwestPBIBWI9025.74%0.4%2.08%100%
SouthwestHOUHRL9025.74%0.99%0.05%100%
ContinentalIAHPHL902.07%1.92%2.24%24.46%
USAirDCAMSY9010.93%1.94%0.94%100%
ContinentalIAHCLE902.07%1.92%1.49%100%
USAirPITMSP9010.93%1.31%2.83%100%
NorthwestMEMIAH909.74%0.65%1.92%60%
NorthwestSATMSP909.74%0.54%2.83%100%
NorthwestRDUMSP899.74%0.71%2.83%100%
DeltaATLDTW899.32%5.17%2.37%50%
UnitedSJCDEN899.5%1.11%2.09%78.76%
USAirCLTBDL8910.93%2.06%0.63%100%
America WestPHXAUS892.83%3.62%0.61%38.7%
Continental ExpressIADEWR894.66%1.14%1.5%100%
America WestSFOPHX892.83%1.31%3.62%30.58%
America WestAUSPHX892.83%0.61%3.62%38.7%
NorthwestBOSMEM899.74%1.68%0.65%100%
USAirMSPPIT8910.93%2.83%1.32%100%
AmericanBWIDFW8910.03%2.09%5.16%100%
Continental ExpressPHLCLE894.66%2.23%1.49%64.96%
America WestSMFSNA892.83%1.04%0.56%35.32%
DeltaSLCANC899.32%0.8%0.22%100%
AmericanOKCDFW8810.03%0.26%5.16%45.6%
USAirROCPIT8810.93%0.21%1.32%100%
SouthwestPDXLAS8825.74%1.04%3.22%33.21%
USAirATLDCA8810.93%5.17%1.94%73.95%
NorthwestMSPSAT889.74%2.83%0.54%100%
SouthwestLBBDAL8825.74%0.12%0.48%100%
UnitedDFWDEN889.5%5.16%2.09%30.88%
SouthwestPHXOMA8825.74%3.62%0.27%39.64%
SouthwestSTLCLE8825.74%1.19%1.49%66.17%
ContinentalEWRMSY882.07%1.49%0.94%100%
SouthwestPVDPHX8725.74%0.69%3.62%100%
SouthwestSTLSLC8725.74%1.19%0.79%98.86%
SouthwestHOUABQ8725.74%0.99%0.8%100%
AmericanBDLDFW8710.03%0.63%5.16%100%
Continental ExpressIAHLIT874.66%1.92%0.25%100%
DeltaFLLJFK879.32%1.05%1.07%27.02%
America WestMKEPHX872.83%0.33%3.62%97.75%
SouthwestSEAPHX8725.74%2.03%3.62%21.91%
JetblueLASJFK871.4%3.22%1.07%94.57%
NorthwestMSPMSN879.74%2.83%0.08%100%
AmericanSLCDFW8710.03%0.8%5.16%65.41%
USAirCLTDTW8710.93%2.06%2.37%100%
SouthwestRNOBOI8725.74%0.58%0.23%100%
SouthwestPHXSEA8625.74%3.62%2.03%22.51%
Continental ExpressLITIAH864.66%0.25%1.92%100%
SouthwestBHMBNA8625.74%0.35%1.24%100%
DeltaDTWATL869.32%2.36%5.18%53.75%
Continental ExpressMSNCLE864.66%0.08%1.49%100%
NorthwestRSWMSP869.74%0.34%2.83%100%
Continental ExpressIAHBHM864.66%1.92%0.35%85.15%
Continental ExpressCLECLT864.66%1.49%2.06%50.89%
SouthwestBOISLC8625.74%0.23%0.79%100%
AmericanMCOORD8610.03%1.97%4.12%25%
AmericanORDFLL8610.03%4.12%1.05%42.57%
USAirDCAATL8610.93%1.94%5.18%76.11%
SouthwestSLCSTL8625.74%0.8%1.19%97.73%
Continental ExpressCLTCLE864.66%2.06%1.49%61.43%
DeltaMCOJFK869.32%1.97%1.07%31.39%
AmericanPDXORD8610.03%1.04%4.12%28.67%
SouthwestDALOKC8625.74%0.48%0.26%100%
SouthwestLITSTL8525.74%0.25%1.19%100%
Continental ExpressEWRIAD854.66%1.49%1.13%100%
ContinentalMSYEWR852.07%0.95%1.5%100%
SouthwestPDXBOI8525.74%1.04%0.23%100%
ContinentalIAHMSY852.07%1.92%0.94%94.44%
USAirPITBDL8510.93%1.31%0.63%100%
USAirINDPHL8510.93%0.65%2.24%100%
AmericanBWIORD8510.03%2.09%4.12%32.32%
SouthwestMDWMHT8525.74%1.92%0.47%100%
AmericanORDDTW8510.03%4.12%2.37%29.62%
ContinentalMSYIAH852.07%0.95%1.92%94.44%
SouthwestBDLMDW8525.74%0.63%1.92%100%
SouthwestMHTMDW8525.74%0.47%1.92%100%
NorthwestATLDTW859.74%5.17%2.37%47.75%
AmericanLGAMIA8510.03%2.21%0.69%98.84%
UnitedORDDFW859.5%4.12%5.16%14.99%
SouthwestMDWBDL8525.74%1.92%0.63%100%
SouthwestTULPHX8525.74%0.29%3.62%100%
SouthwestLASPDX8425.74%3.22%1.04%28.67%
America WestPHXMKE842.83%3.62%0.33%95.45%
Continental ExpressSTLIAH844.66%1.19%1.92%92.31%
Atlantic SoutheastDFWTUL844.57%5.16%0.29%36.05%
Atlantic SoutheastTULDFW844.57%0.29%5.16%34.57%
SouthwestCMHBNA8425.74%0.5%1.24%100%
American EagleDFWLRD844.6%5.16%0.03%100%
Continental ExpressPNSIAH844.66%0.06%1.92%77.06%
USAirLASPIT8410.93%3.22%1.32%93.33%
Continental ExpressIAHPNS844.66%1.92%0.06%78.5%
SouthwestTULMCI8425.74%0.29%1.18%100%
AmericanFLLORD8310.03%1.05%4.12%42.56%
Atlantic SoutheastFAYATL834.57%0.02%5.18%100%
SouthwestELPHOU8325.74%0.42%0.99%100%
AmericanDFWBWI8310.03%5.16%2.08%100%
AmericanLAXAUS8310.03%3.21%0.61%59.29%
Atlantic SoutheastATLHSV834.57%5.17%0.18%16.4%
American EagleCLEORD834.6%1.49%4.12%32.42%
DeltaDENATL839.32%2.08%5.18%54.25%
Atlantic SoutheastHSVATL834.57%0.18%5.18%16.63%
NorthwestMSPFAR839.74%2.83%0.02%100%
Atlantic SoutheastATLFAY834.57%5.17%0.02%100%
USAirMIACLT8310.93%0.69%2.06%84.69%
USAirCLECLT8310.93%1.49%2.06%49.11%
Continental ExpressIAHLBB834.66%1.92%0.12%100%
AmericanMIAATL8310.03%0.69%5.18%20.24%
SouthwestSTLTUL8325.74%1.19%0.29%73.45%
AmericanORDMSY8310.03%4.12%0.94%66.94%
NorthwestMSPSAN839.74%2.83%1.47%100%
UnitedSEASFO839.5%2.03%1.32%46.63%
American EagleLRDDFW834.6%0.03%5.16%100%
SouthwestBNAJAX8325.74%1.24%0.46%100%
DeltaBHMATL839.32%0.35%5.18%100%
USAirPITIND8210.93%1.31%0.65%100%
ContinentalIAHMIA822.07%1.92%0.69%68.91%
AmericanDFWORF8210.03%5.16%0.26%100%
ContinentalIAHBOS822.07%1.92%1.68%100%
UnitedPHLDEN829.5%2.23%2.09%42.71%
SouthwestBOIRNO8225.74%0.23%0.58%100%
NorthwestRDUDTW829.74%0.71%2.37%100%
SouthwestSTLOMA8225.74%1.19%0.27%96.47%
AmericanLASLAX8210.03%3.22%3.21%7.64%
Continental ExpressLBBIAH824.66%0.12%1.92%100%
ContinentalDTWIAH822.07%2.36%1.92%24.55%
USAirCLTRSW8210.93%2.06%0.34%100%
AmericanTULDFW8210.03%0.29%5.16%33.74%
Continental ExpressCLEMSN814.66%1.49%0.08%100%
USAirPHLLAS8110.93%2.23%3.22%90%
SouthwestOAKABQ8125.74%1.47%0.8%100%
SouthwestDALMSY8125.74%0.48%0.94%100%
Continental ExpressBNAIAH814.66%1.24%1.92%92.05%
SouthwestBNACMH8125.74%1.24%0.5%100%
SouthwestBOIGEG8125.74%0.23%0.27%100%
NorthwestFARMSP819.74%0.02%2.83%100%
NorthwestMEMSFO819.74%0.65%1.32%100%
SouthwestTULDAL8125.74%0.29%0.48%100%
ContinentalMIAIAH812.07%0.69%1.92%81.82%
UnitedSFOPDX819.5%1.31%1.04%57.45%
USAirPITMHT8110.93%1.31%0.47%100%
NorthwestMIAMSP809.74%0.69%2.83%95.24%
AmericanDTWORD8010.03%2.36%4.12%26.06%
American EagleORDCLE804.6%4.12%1.49%33.9%
USAirRSWCLT8010.93%0.34%2.06%100%
DeltaFLLBDL809.32%1.05%0.63%97.56%
SouthwestDALMAF8025.74%0.48%0.12%100%
USAirORDDCA8010.93%4.12%1.94%14.21%
ContinentalIAHDTW802.07%1.92%2.37%22.73%
USAirLGABUF8010.93%2.21%0.36%100%
Continental ExpressGRRCLE804.66%0.15%1.49%100%
SouthwestLAXRNO8025.74%3.21%0.58%60.15%
DeltaATLBDL809.32%5.17%0.63%100%
AmericanORDSFO8010.03%4.12%1.32%22.1%
SouthwestJANMDW8025.74%0.1%1.92%100%
USAirPITMCI8010.93%1.31%1.18%100%
JetblueLGBIAD801.4%0.19%1.13%100%
NorthwestMSPMIA809.74%2.83%0.69%93.02%
America WestSLCPHX792.83%0.8%3.62%30.86%
DeltaATLCVG799.32%5.17%0.96%96.34%
American EagleBGRBOS794.6%0.03%1.68%96.34%
NorthwestMSPOMA799.74%2.83%0.27%100%
USAirLASPHL7910.93%3.22%2.24%91.86%
AmericanDFWOKC7910.03%5.16%0.26%42.93%
USAirDCAORD7910.93%1.94%4.12%14.34%
Continental ExpressCLEIAD794.66%1.49%1.13%100%
AmericanORDMCO7910.03%4.12%1.97%24.31%
DeltaATLBNA799.32%5.17%1.24%98.75%
USAirALBPIT7910.93%0.32%1.32%100%
USAirDCAPBI7910.93%1.94%0.4%100%
AmericanMSYORD7910.03%0.95%4.12%66.39%
America WestPHXSLC792.83%3.62%0.79%29.7%
Continental ExpressIAHLFT794.66%1.92%0.05%100%
ContinentalORDIAH792.07%4.12%1.92%46.47%
Continental ExpressLFTIAH794.66%0.05%1.92%100%
SouthwestPVDBNA7925.74%0.69%1.24%100%
SouthwestRDUTPA7825.74%0.71%1.41%100%
AmericanMCODFW7810.03%1.97%5.16%57.35%
USAirBUFLGA7810.93%0.36%2.21%100%
American EagleORDOKC784.6%4.12%0.26%84.78%
AmericanSFOORD7810.03%1.31%4.12%19.85%
USAirDCAROC7810.93%1.94%0.21%100%
JetblueJFKSJU781.4%1.07%0.19%68.42%
America WestPHXSFO782.83%3.62%1.32%30.12%
NorthwestMSPCMH789.74%2.83%0.5%100%
DeltaSEAATL789.32%2.03%5.18%100%
UnitedOAKDEN789.5%1.47%2.09%100%
AmericanORDTUL7810.03%4.12%0.29%100%
SouthwestOMASTL7825.74%0.27%1.19%96.3%
American EagleBUFORD784.6%0.36%4.12%54.93%
JetblueSJUJFK781.4%0.19%1.07%68.42%
American EagleOKCORD784.6%0.26%4.12%93.98%
SouthwestRNOLAX7725.74%0.58%3.21%55%
USAirMHTPIT7710.93%0.47%1.32%100%
DeltaLASSLC779.32%3.22%0.79%23.12%
AmericanMIALGA7710.03%0.69%2.21%97.47%
Continental ExpressDCAEWR774.66%1.94%1.5%83.7%
American EagleTULDFW774.6%0.29%5.16%31.69%
DeltaEWRFLL779.32%1.49%1.05%77%
AmericanLAXLAS7710.03%3.21%3.22%7.41%
DeltaBNAATL779.32%1.24%5.18%100%
SouthwestMHTBNA7725.74%0.47%1.24%100%
DeltaPHXATL779.32%3.62%5.18%96.25%
American EagleDFWTUL774.6%5.16%0.29%33.05%
SouthwestBNAPVD7725.74%1.24%0.68%100%
USAirPITLAS7710.93%1.31%3.22%89.53%
DeltaCVGMSY779.32%0.95%0.94%97.47%
SouthwestJAXBNA7725.74%0.46%1.24%100%
JetblueIADLGB771.4%1.14%0.19%100%
UnitedBOSLAX779.5%1.68%3.21%62.6%
SouthwestMAFDAL7725.74%0.12%0.48%100%
American EagleBOSBGR764.6%1.68%0.03%97.44%
USAirCLTPVD7610.93%2.06%0.68%100%
SouthwestFLLISP7625.74%1.05%0.38%58.91%
Continental ExpressMKECLE764.66%0.33%1.49%100%
America WestLASSEA762.83%3.22%2.03%18.05%
SouthwestMDWBHM7625.74%1.92%0.35%100%
America WestMSPPHX762.83%2.83%3.62%21.29%
SouthwestABQHOU7625.74%0.8%0.99%100%
Continental ExpressIADCLE764.66%1.14%1.49%100%
AlaskaFAIANC762.45%0.03%0.22%95%
DeltaMSYCVG769.32%0.95%0.96%97.44%
America WestGEGPHX762.83%0.27%3.62%100%
AmericanLGATPA7610.03%2.21%1.41%82.61%
USAirCLTROC7610.93%2.06%0.21%100%
SouthwestLASCMH7625.74%3.22%0.5%100%
American EagleORDBUF764.6%4.12%0.36%53.52%
America WestPHXSAN762.83%3.62%1.47%15.97%
DeltaMOBATL759.32%0.04%5.18%96.15%
UnitedSMFDEN759.5%1.04%2.09%100%
USAirDCAMCO7510.93%1.94%1.97%94.94%
AmericanORDABQ7510.03%4.12%0.8%98.68%
SouthwestPHXTUL7525.74%3.62%0.29%100%
DeltaJFKMCO759.32%1.07%1.97%28.74%
NorthwestMEMSEA759.74%0.65%2.03%100%
AmericanORDDCA7510.03%4.12%1.94%13.32%
SouthwestPHXMSY7525.74%3.62%0.94%75.76%
USAirBTVPHL7510.93%0.09%2.24%100%
DeltaDFWSLC759.32%5.16%0.79%44.64%
SouthwestGEGBOI7525.74%0.27%0.23%100%
NorthwestSFOMEM759.74%1.31%0.65%100%
Continental ExpressMAFIAH754.66%0.12%1.92%100%
SouthwestBOILAS7525.74%0.23%3.22%100%
DeltaCVGLAX759.32%0.95%3.21%100%
DeltaMCOIND759.32%1.97%0.65%55.97%
USAirPITSYR7510.93%1.31%0.17%100%
AmericanRICDFW7510.03%0.27%5.16%100%
AmericanTPALGA7510.03%1.42%2.21%82.42%
AmericanSFOMIA7510.03%1.31%0.69%78.95%
Continental ExpressIAHMAF754.66%1.92%0.12%100%
AmericanDFWJAX7510.03%5.16%0.46%93.75%
USAirMSYPHL7510.93%0.95%2.24%94.94%
AmericanATLORD7510.03%5.17%4.12%22.19%
AlaskaANCFAI742.45%0.22%0.03%94.87%
DeltaATLCHS749.32%5.17%0.14%88.1%
UnitedDFWORD749.5%5.16%4.12%13.81%
UnitedLAXMSY749.5%3.21%0.94%58.27%
USAirPVDPIT7410.93%0.69%1.32%100%
DeltaINDMCO749.32%0.65%1.97%57.36%
SouthwestOKCDAL7425.74%0.26%0.48%100%
America WestPHXGEG742.83%3.62%0.27%100%
AmericanORFDFW7410.03%0.26%5.16%100%
SouthwestTPARDU7425.74%1.42%0.71%100%
SouthwestCMHLAS7425.74%0.5%3.22%100%
UnitedDTWORD749.5%2.36%4.12%24.1%
AmericanSATORD7410.03%0.54%4.12%85.06%
NorthwestDTWATL749.74%2.36%5.18%46.25%
DeltaCLECVG749.32%1.49%0.96%56.92%
USAirPITROC7410.93%1.31%0.21%100%
AmericanABQORD7410.03%0.8%4.12%100%
SouthwestLASOMA7425.74%3.22%0.27%91.36%
DeltaCHSATL749.32%0.14%5.18%88.1%
NorthwestSANMSP749.74%1.47%2.83%100%
America WestSEAPHX732.83%2.03%3.62%18.39%
DeltaPHLCVG739.32%2.23%0.96%83.91%
SouthwestBNAMHT7325.74%1.24%0.47%100%
SouthwestFLLMSY7325.74%1.05%0.94%100%
ContinentalCLEEWR732.07%1.49%1.5%100%
USAirGSOPHL7310.93%0.14%2.24%100%
AmericanTULORD7310.03%0.29%4.12%100%
ContinentalBOSIAH732.07%1.68%1.92%100%
USAirCLTMIA7310.93%2.06%0.69%83.91%
SouthwestBHMHOU7325.74%0.35%0.99%100%
AmericanTPAORD7310.03%1.42%4.12%24.91%
AmericanDFWMCO7310.03%5.16%1.97%50.69%
AmericanJAXDFW7310.03%0.46%5.16%87.95%
USAirPHLSEA7310.93%2.23%2.03%100%
Continental ExpressCLEMKE734.66%1.49%0.33%100%
SouthwestISPFLL7325.74%0.37%1.05%62.93%
American EagleORDDSM724.6%4.12%0.07%83.72%
NorthwestMSPCLE729.74%2.83%1.49%58.54%
AmericanORDMIA7210.03%4.12%0.69%41.86%
DeltaBDLFLL729.32%0.63%1.05%97.3%
DeltaCMHMCO729.32%0.5%1.97%68.57%
DeltaATLBHM729.32%5.17%0.35%100%
DeltaBTRATL729.32%0.08%5.18%100%
DeltaATLBTR729.32%5.17%0.08%100%
AmericanDENLAX7210.03%2.08%3.21%24.91%
NorthwestOMAMSP729.74%0.27%2.83%100%
Continental ExpressEWRDCA724.66%1.49%1.94%69.9%
USAirPHLMSY7210.93%2.23%0.94%88.89%
UnitedMIAIAD729.5%0.69%1.13%100%
AmericanDFWTUL7210.03%5.16%0.29%30.9%
American EagleHPNORD724.6%0.09%4.12%100%
Continental ExpressORDCLE724.66%4.12%1.49%30.51%
Continental ExpressCLEORD724.66%1.49%4.12%28.13%
USAirSTLPHL7210.93%1.19%2.24%90%
American EagleORDHPN724.6%4.12%0.09%100%
ContinentalIAHORD722.07%1.92%4.12%45.57%
AmericanORDATL7110.03%4.12%5.18%22.47%
SouthwestSEAMDW7125.74%2.03%1.92%72.45%
DeltaDENSLC719.32%2.08%0.79%84.52%
American EagleDSMORD714.6%0.07%4.12%80.68%
AmericanORDTPA7110.03%4.12%1.41%24.91%
Continental ExpressINDEWR714.66%0.65%1.5%68.27%
ContinentalIAHSAT712.07%1.92%0.54%92.21%
America WestDENLAS712.83%2.08%3.22%17.15%
AmericanSJCLAS7110.03%1.11%3.22%25.09%
DeltaCVGPHL719.32%0.95%2.24%83.53%
USAirBUFCLT7110.93%0.36%2.06%100%
NorthwestSEAMEM719.74%2.03%0.65%100%
America WestPHXMSP712.83%3.62%2.83%21.26%
Continental ExpressDAYEWR714.66%0.12%1.5%100%
DeltaDFWMCO719.32%5.16%1.97%49.31%
UnitedDENATL709.5%2.08%5.18%45.75%
Continental ExpressCLEDCA704.66%1.49%1.94%66.04%
SouthwestLAXHOU7025.74%3.21%0.99%82.35%
DeltaMCOCMH709.32%1.97%0.5%70.71%
Continental ExpressIAHHRL704.66%1.92%0.05%100%
Continental ExpressHRLIAH704.66%0.05%1.92%100%
UnitedPVDORD709.5%0.69%4.12%36.46%
USAirPITMDT7010.93%1.31%0.17%100%
DeltaBDLPBI709.32%0.63%0.4%100%
SouthwestTPACMH7025.74%1.42%0.5%52.63%
SouthwestSTLCMH7025.74%1.19%0.5%97.22%
ATAMDWDCA700.88%1.92%1.94%100%
UnitedORDPVD709.5%4.12%0.68%35.9%
SouthwestSLCRNO7025.74%0.8%0.58%100%
USAirMCOPHL7010.93%1.97%2.24%50.36%
Continental ExpressEWRSYR704.66%1.49%0.17%100%
USAirPHLIND7010.93%2.23%0.65%100%
ContinentalBOSCLE692.07%1.68%1.49%87.34%
NorthwestMIAMEM699.74%0.69%0.65%100%
USAirFLLPHL6910.93%1.05%2.24%68.32%
America WestSANPHX692.83%1.47%3.62%12.17%
Continental ExpressJFKCLE694.66%1.07%1.49%78.41%
America WestSNASMF692.83%0.56%1.04%31.94%
DeltaANCSLC699.32%0.22%0.79%100%
UnitedLAXEWR699.5%3.21%1.5%54.76%
ATADCAMDW690.88%1.94%1.92%100%
SouthwestPDXMCI6925.74%1.04%1.18%100%
USAirPHLSAN6910.93%2.23%1.47%100%
SouthwestAUSBWI6925.74%0.61%2.08%100%
SouthwestPDXSLC6925.74%1.04%0.79%53.49%
ContinentalMFEIAH692.07%0.04%1.92%79.31%
USAirPBICLT6910.93%0.4%2.06%100%
SouthwestTPABHM6925.74%1.42%0.35%100%
SouthwestMCOPHL6925.74%1.97%2.24%49.64%
UnitedCLEORD699.5%1.49%4.12%26.95%
AmericanDFWMIA6910.03%5.16%0.69%100%
USAirPBIDCA6910.93%0.4%1.94%100%
DeltaPBIBDL699.32%0.4%0.63%100%
UnitedDENSMF699.5%2.08%1.04%100%
ContinentalIAHMFE692.07%1.92%0.04%79.31%
UnitedORDCMH689.5%4.12%0.5%68.69%
SouthwestBHMTPA6825.74%0.35%1.41%100%
SouthwestLASSEA6825.74%3.22%2.03%16.15%
DeltaFLLEWR689.32%1.05%1.5%71.58%
DeltaCVGLAS689.32%0.95%3.22%100%
SouthwestBHMMDW6825.74%0.35%1.92%100%
USAirPHLSTL6810.93%2.23%1.19%95.77%
SouthwestHOUTUL6825.74%0.99%0.29%100%
Continental ExpressCLEJFK684.66%1.49%1.07%78.16%
SouthwestBNABDL6825.74%1.24%0.63%100%
AmericanAUSSJC6810.03%0.61%1.11%100%
Continental ExpressIAHBNA684.66%1.92%1.24%91.89%
USAirPHLGSO6810.93%2.23%0.14%100%
SouthwestELPABQ6825.74%0.42%0.8%100%
USAirCLTFLL6810.93%2.06%1.05%100%
Continental ExpressMDWCLE684.66%1.92%1.49%22.15%
SouthwestBDLBNA6825.74%0.63%1.24%100%
USAirSEAPHL6810.93%2.03%2.24%100%
USAirBDLPIT6710.93%0.63%1.32%100%
AmericanMSPDFW6710.03%2.83%5.16%33.17%
AmericanDFWMFE6710.03%5.16%0.04%100%
SouthwestABQAMA6725.74%0.8%0.09%100%
JetblueSYRJFK671.4%0.17%1.07%69.07%
SouthwestOKCSTL6725.74%0.26%1.19%97.1%
DeltaSEASLC679.32%2.03%0.79%40.36%
Continental ExpressCLEMDW674.66%1.49%1.92%23.59%
USAirCLTIND6710.93%2.06%0.65%100%
AmericanDFWOMA6710.03%5.16%0.27%100%
UnitedDENJAC679.5%2.08%0.02%100%
Continental ExpressLEXCLE674.66%0.09%1.49%100%
AmericanSLCORD6710.03%0.8%4.12%70.53%
Continental ExpressSTLEWR674.66%1.19%1.5%98.53%
ContinentalATLIAH672.07%5.17%1.92%57.76%
JetblueJFKSYR671.4%1.07%0.17%67.68%
Continental ExpressEWRORF674.66%1.49%0.26%89.33%
AmericanOMADFW6710.03%0.27%5.16%100%
SouthwestPHLMDW6725.74%2.23%1.92%50.38%
SouthwestMCIPDX6725.74%1.18%1.04%100%
AmericanMFEDFW6710.03%0.04%5.16%100%
SouthwestBWISAT6725.74%2.09%0.54%100%
AmericanDFWRIC6710.03%5.16%0.27%100%
America WestLASPDX662.83%3.22%1.04%22.53%
USAirSEAPIT6610.93%2.03%1.32%100%
AlaskaONTPDX662.45%0.77%1.04%100%
NorthwestIAHMEM669.74%1.92%0.65%49.62%
SouthwestAMADAL6625.74%0.09%0.48%100%
ATAPHLMDW660.88%2.23%1.92%49.62%
ATAMDWPHL660.88%1.92%2.24%55%
Continental ExpressEWRRIC664.66%1.49%0.27%97.06%
UnitedORDMCI669.5%4.12%1.18%32.84%
USAirPITALB6610.93%1.31%0.32%100%
SouthwestBNABHM6625.74%1.24%0.35%100%
USAirMDTPIT6610.93%0.17%1.32%100%
AmericanORDSAT6610.03%4.12%0.54%84.62%
UnitedJACDEN669.5%0.02%2.09%100%
SouthwestBWIJAN6625.74%2.09%0.1%100%
Continental ExpressIAHCLT664.66%1.92%2.06%32.35%
AlaskaPDXSFO662.45%1.04%1.32%40.74%
NorthwestCMHMSP669.74%0.5%2.83%100%
UnitedDENIAH669.5%2.08%1.92%55.93%
SouthwestSTLOKC6625.74%1.19%0.26%97.06%
USAirIAHDCA6610.93%1.92%1.94%84.62%
SouthwestMDWSEA6625.74%1.92%2.03%70.97%
Continental ExpressOKCIAH664.66%0.26%1.92%62.26%
SouthwestTPAMHT6625.74%1.42%0.47%100%
SouthwestRDUPHX6625.74%0.71%3.62%100%
USAirPHLBTV6510.93%2.23%0.09%100%
Continental ExpressIAHMEM654.66%1.92%0.65%48.87%
SouthwestBNAAUS6525.74%1.24%0.61%100%
DeltaTPABOS659.32%1.42%1.68%75.58%
DeltaBOSTPA659.32%1.68%1.41%76.47%
Continental ExpressIAHOKC654.66%1.92%0.26%61.9%
ATABOSMDW650.88%1.68%1.92%100%
American EagleJFKBOS654.6%1.07%1.68%84.42%
DeltaPVDATL659.32%0.69%5.18%100%
USAirCLTLAS6510.93%2.06%3.22%100%
SouthwestPBIISP6525.74%0.4%0.38%100%
SouthwestSEALAS6525.74%2.03%3.22%15.74%
Continental ExpressDCACLE654.66%1.94%1.49%68.42%
ATAMDWBOS650.88%1.92%1.68%100%
UnitedIADSJC659.5%1.14%1.11%100%
AmericanLASSJC6510.03%3.22%1.11%21.45%
DeltaMCOPVD659.32%1.97%0.68%27.54%
DeltaPVDMCO649.32%0.69%1.97%29.91%
NorthwestDTWRDU649.74%2.36%0.71%100%
AmericanDCAORD6410.03%1.94%4.12%11.62%
SouthwestMCOBDL6425.74%1.97%0.63%32.65%
SouthwestISPPBI6425.74%0.37%0.4%100%
NorthwestDTWMSN649.74%2.36%0.08%100%
Continental ExpressSYRCLE644.66%0.17%1.49%100%
ContinentalAUSIAH642.07%0.61%1.92%88.89%
SouthwestMSYPHX6425.74%0.95%3.62%71.11%
DeltaCMHTPA649.32%0.5%1.41%55.65%
American EagleBOSJFK644.6%1.68%1.07%82.05%
UnitedFLLIAD649.5%1.05%1.13%50.39%
AmericanBNALGA6410.03%1.24%2.21%84.21%
Continental ExpressCLTIAH644.66%2.06%1.92%29.22%
Continental ExpressEWRROC644.66%1.49%0.21%98.46%
UnitedIADSJU649.5%1.14%0.19%88.89%
UnitedMSPORD639.5%2.83%4.12%27.88%
USAirMCODCA6310.93%1.97%1.94%94.03%
USAirPNSCLT6310.93%0.06%2.06%100%
America WestSEALAS632.83%2.03%3.22%15.25%
USAirMDTCLT6310.93%0.17%2.06%100%
NorthwestTUSMSP639.74%0.31%2.83%100%
DeltaCVGCLE639.32%0.95%1.49%53.85%
SouthwestSATBWI6325.74%0.54%2.08%100%
USAirCLTPNS6310.93%2.06%0.06%100%
Continental ExpressEWRBNA634.66%1.49%1.24%95.45%
UnitedIAHDEN639.5%1.92%2.09%67.74%
DeltaATLIND639.32%5.17%0.65%100%
SouthwestMHTTPA6325.74%0.47%1.41%100%
DeltaBDLATL639.32%0.63%5.18%100%
DeltaTPACMH639.32%1.42%0.5%47.37%
USAirINDPIT6310.93%0.65%1.32%100%
Continental ExpressIAHSDF634.66%1.92%0.29%84%
NorthwestMSPTUS639.74%2.83%0.31%100%
USAirINDCLT6310.93%0.65%2.06%100%
SouthwestPHXMCO6325.74%3.62%1.97%100%
DeltaATLPVD639.32%5.17%0.68%100%
Continental ExpressIAHBTR624.66%1.92%0.08%96.88%
USAirDFWDCA6210.93%5.16%1.94%21.6%
NorthwestDTWALB629.74%2.36%0.32%100%
USAirDCAIAH6210.93%1.94%1.92%64.58%
UnitedLAXPDX629.5%3.21%1.04%24.12%
UnitedMSYLAX629.5%0.95%3.21%63.92%
DeltaANCATL629.32%0.22%5.18%100%
Continental ExpressSDFIAH624.66%0.29%1.92%83.78%
DeltaLAXSLC629.32%3.21%0.79%30.39%
AmericanPSPORD6210.03%0.07%4.12%98.41%
SouthwestTULSTL6225.74%0.29%1.19%68.13%
SouthwestJANBWI6225.74%0.1%2.08%100%
Continental ExpressIAHIND624.66%1.92%0.65%62.63%
SouthwestOMAPHX6225.74%0.27%3.62%31.47%
Continental ExpressORFEWR624.66%0.26%1.5%88.57%
SouthwestAUSLAX6225.74%0.61%3.21%53.45%
AmericanDFWMSP6110.03%5.16%2.83%29.9%
DeltaCVGMCO619.32%0.95%1.97%84.72%
SouthwestHOULAX6125.74%0.99%3.21%79.22%
SouthwestMCOBUF6125.74%1.97%0.36%92.42%
ContinentalCLELGA612.07%1.49%2.21%27.48%
USAirCLTBUF6110.93%2.06%0.36%100%
NorthwestMSPRNO619.74%2.83%0.58%100%
SouthwestPVDPHL6125.74%0.69%2.24%28.91%
SouthwestTUSABQ6125.74%0.31%0.8%100%
DeltaATLMOB619.32%5.17%0.04%95.31%
America WestLASDEN612.83%3.22%2.09%15.4%
AmericanORDSLC6110.03%4.12%0.79%68.54%
UnitedMCIORD619.5%1.18%4.12%31.28%
SouthwestBDLMCO6125.74%0.63%1.97%31.77%
Continental ExpressEWRIND614.66%1.49%0.65%67.78%
NorthwestRNOMSP619.74%0.58%2.83%100%
ContinentalSATIAH612.07%0.54%1.92%91.04%
AmericanORDPSP6110.03%4.12%0.07%98.39%
SouthwestPVDISP6125.74%0.69%0.38%100%
USAirCLTMKE6110.93%2.06%0.33%100%
NorthwestMSPBZN619.74%2.83%0.02%100%
NorthwestALBDTW619.74%0.32%2.37%100%
SouthwestTPAAUS6125.74%1.42%0.61%100%
NorthwestMSPMCI609.74%2.83%1.18%100%
SouthwestCLESTL6025.74%1.49%1.19%57.14%
AmericanELPORD6010.03%0.42%4.12%100%
Continental ExpressBTRIAH604.66%0.08%1.92%96.77%
SouthwestMCISMF6025.74%1.18%1.04%100%
DeltaPDXSLC609.32%1.04%0.79%46.51%
SouthwestBNAFLL6025.74%1.24%1.05%100%
NorthwestBZNMSP609.74%0.02%2.83%100%
Continental ExpressGSPEWR604.66%0.07%1.5%100%
Continental ExpressSYREWR604.66%0.17%1.5%100%
AmericanSANJFK6010.03%1.47%1.07%57.14%
AmericanJFKSAN6010.03%1.07%1.47%54.05%
SouthwestAUSBNA6025.74%0.61%1.24%100%
America WestPHXSEA602.83%3.62%2.03%15.71%
SouthwestJAXTPA6025.74%0.46%1.41%100%
UnitedIAHLAX609.5%1.92%3.21%90.91%
AlaskaSFOPDX602.45%1.31%1.04%42.55%
USAirCLTSEA5910.93%2.06%2.03%100%
NorthwestPHXMEM599.74%3.62%0.65%100%
DeltaSLCDEN599.32%0.8%2.09%78.67%
ContinentalMSPIAH592.07%2.83%1.92%26.46%
ContinentalIAHATL592.07%1.92%5.18%55.14%
NorthwestMEMSAT599.74%0.65%0.54%100%
American EagleICTDFW594.6%0.05%5.16%61.46%
UnitedINDORD599.5%0.65%4.12%51.3%
SouthwestSLCPDX5925.74%0.8%1.04%67.82%
UnitedDENDFW599.5%2.08%5.16%23.41%
USAirBNAPIT5910.93%1.24%1.32%100%
USAirTPAPIT5910.93%1.42%1.32%93.65%
DeltaDFWLAS599.32%5.16%3.22%21.3%
SouthwestHOUOKC5925.74%0.99%0.26%100%
USAirFLLCLT5910.93%1.05%2.06%100%
Continental ExpressIAHTUL594.66%1.92%0.29%56.73%
DeltaATLPDX599.32%5.17%1.04%100%
USAirCLTMDT5910.93%2.06%0.17%100%
USAirPHLPBI5910.93%2.23%0.4%73.75%
Continental ExpressBNAEWR594.66%1.24%1.5%96.72%
USAirLASCLT5910.93%3.22%2.06%100%
Continental ExpressEWRALB584.66%1.49%0.32%100%
SouthwestINDLAX5825.74%0.65%3.21%69.05%
UnitedIADFLL589.5%1.14%1.05%48.33%
USAirPITBUF5810.93%1.31%0.36%100%
AmericanSJCAUS5810.03%1.11%0.61%100%
America WestSMFLAS582.83%1.04%3.22%18.47%
SouthwestSEABNA5825.74%2.03%1.24%100%
USAirPITMSY5810.93%1.31%0.94%100%
NorthwestCLEDTW589.74%1.49%2.37%35.37%
AmericanLGAHOU5810.03%2.21%0.99%100%
USAirBOSSJU5810.93%1.68%0.19%100%
SouthwestLASBOI5825.74%3.22%0.23%100%
AmericanHOUAUS5810.03%0.99%0.61%23.77%
USAirDCABNA5810.93%1.94%1.24%100%
America WestLASSMF582.83%3.22%1.04%17.74%
Continental ExpressMEMIAH584.66%0.65%1.92%38.67%
ContinentalIAHMSP582.07%1.92%2.83%25.22%
Continental ExpressMEMCLE584.66%0.65%1.49%100%
DeltaMCODFW589.32%1.97%5.16%42.65%
USAirDCADFW5810.93%1.94%5.16%19.4%
AmericanORDMSP5810.03%4.12%2.83%20.57%
ContinentalIAHAUS582.07%1.92%0.61%92.06%
American EagleDFWICT584.6%5.16%0.05%61.05%
USAirBUFPIT5710.93%0.36%1.32%100%
America WestLASSJC572.83%3.22%1.11%18.81%
USAirPITBNA5710.93%1.31%1.24%100%
SouthwestOAKBNA5725.74%1.47%1.24%100%
SouthwestTPAJAX5725.74%1.42%0.46%100%
Continental ExpressEWRDAY574.66%1.49%0.12%100%
Continental ExpressDTWEWR574.66%2.36%1.5%20.28%
SouthwestBWIAUS5725.74%2.09%0.61%100%
UnitedDENSJC579.5%2.08%1.11%71.25%
NorthwestMCIMSP579.74%1.18%2.83%100%
AmericanFATDFW5710.03%0.02%5.16%100%
AmericanDFWFAT5710.03%5.16%0.02%100%
AmericanLAXEWR5710.03%3.21%1.5%45.24%
SouthwestLAXIND5725.74%3.21%0.65%67.06%
SouthwestBWILAX5725.74%2.09%3.21%36.77%
USAirBTVDCA5710.93%0.09%1.94%100%
AmericanEWRLAX5710.03%1.49%3.21%32.57%
ContinentalCLEIAH572.07%1.49%1.92%100%
SouthwestLAXAUS5725.74%3.21%0.61%40.71%
SouthwestBNAOAK5725.74%1.24%1.47%100%
Continental ExpressCLEMEM574.66%1.49%0.65%100%
DeltaSLCMCO579.32%0.8%1.97%100%
UnitedIADPDX579.5%1.14%1.04%100%
NorthwestSATMEM579.74%0.54%0.65%100%
SouthwestMSYSAN5725.74%0.95%1.47%100%
AmericanDFWPBI5710.03%5.16%0.4%100%
AmericanSJCSAN5710.03%1.11%1.47%13.48%
UnitedLAXBWI569.5%3.21%2.08%43.08%
JetblueIADOAK561.4%1.14%1.47%50.91%
Continental ExpressRDUCLE564.66%0.71%1.49%100%
SouthwestRNOSLC5625.74%0.58%0.79%100%
Continental ExpressDALIAH564.66%0.48%1.92%65.12%
Continental ExpressIAHDAL564.66%1.92%0.48%65.12%
AmericanLAXSJC5610.03%3.21%1.11%11.79%
JetblueLASLGB561.4%3.22%0.19%100%
USAirMHTCLT5610.93%0.47%2.06%100%
UnitedORDCLE569.5%4.12%1.49%23.73%
JetblueBOSMCO561.4%1.68%1.97%18.12%
NorthwestMEMMIA569.74%0.65%0.69%100%
SouthwestHOUMCO5625.74%0.99%1.97%100%
DeltaATLABQ569.32%5.17%0.8%100%
NorthwestMSPPVD569.74%2.83%0.68%100%
SouthwestAUSTPA5625.74%0.61%1.41%100%
UnitedMCIDEN569.5%1.18%2.09%100%
Continental ExpressEWRDTW564.66%1.49%2.37%20%
Continental ExpressCLEMSP564.66%1.49%2.83%62.22%
AmericanFLLLGA5610.03%1.05%2.21%39.44%
Continental ExpressGSOEWR564.66%0.14%1.5%94.92%
ContinentalCLETPA552.07%1.49%1.41%91.67%
SouthwestLASELP5525.74%3.22%0.42%84.62%
SouthwestPHLMHT5525.74%2.23%0.47%20.91%
USAirMCOPIT5510.93%1.97%1.32%88.71%
Continental ExpressMCIIAH554.66%1.18%1.92%59.78%
Atlantic SoutheastOKCDFW554.57%0.26%5.16%28.5%
American EagleBNAORD554.6%1.24%4.12%57.89%
UnitedCMHORD559.5%0.5%4.12%63.22%
UnitedDENOAK559.5%2.08%1.47%100%
SouthwestISPPVD5525.74%0.37%0.68%100%
JetblueMCOBOS551.4%1.97%1.68%17.86%
SouthwestLASIND5525.74%3.22%0.65%61.8%
ContinentalCLEBOS552.07%1.49%1.68%83.33%
SouthwestSANMSY5525.74%1.47%0.94%100%
DeltaLGAFLL559.32%2.21%1.05%35.71%
UnitedORDRIC559.5%4.12%0.27%100%
SouthwestALBLAS5525.74%0.32%3.22%100%
Atlantic SoutheastDFWOKC554.57%5.16%0.26%29.89%
ContinentalTPACLE552.07%1.42%1.49%91.67%
DeltaJFKTPA559.32%1.07%1.41%31.79%
Continental ExpressTULIAH554.66%0.29%1.92%55%
SouthwestINDLAS5525.74%0.65%3.22%62.5%
Continental ExpressEWRPVD544.66%1.49%0.68%81.82%
UnitedRICORD549.5%0.27%4.12%100%
AmericanLAXDEN5410.03%3.21%2.09%15.98%
Continental ExpressIAHMCI544.66%1.92%1.18%52.94%
AmericanPBIDFW5410.03%0.4%5.16%100%
AmericanDFWCLE5410.03%5.16%1.49%23.89%
DeltaLASDFW549.32%3.22%5.16%17.59%
American EagleORDXNA544.6%4.12%0.09%90%
SouthwestABQTUS5425.74%0.8%0.31%100%
SouthwestMCOHOU5425.74%1.97%0.99%100%
America WestPHXLGB542.83%3.62%0.19%100%
SouthwestDALAMA5425.74%0.48%0.09%100%
America WestSJCLAS542.83%1.11%3.22%19.08%
UnitedORDMSP549.5%4.12%2.83%19.15%
Continental ExpressEWRGSO544.66%1.49%0.14%93.1%
SouthwestFLLBNA5425.74%1.05%1.24%100%
JetblueFLLIAD541.4%1.05%1.13%42.52%
SouthwestMDWPHL5425.74%1.92%2.24%45%
AmericanORDELP5410.03%4.12%0.42%100%
SouthwestMCOORF5425.74%1.97%0.26%98.18%
SouthwestMCOPHX5425.74%1.97%3.62%100%
ATACLTMDW540.88%2.06%1.92%100%
SouthwestHOUBHM5425.74%0.99%0.35%100%
Continental ExpressCLESYR544.66%1.49%0.17%100%
UnitedIADOAK549.5%1.14%1.47%49.09%
America WestLGBPHX542.83%0.19%3.62%100%
USAirCLTCLE5410.93%2.06%1.49%38.57%
JetblueIADFLL541.4%1.14%1.05%45%
SouthwestPHLPVD5425.74%2.23%0.68%27%
Continental ExpressRICEWR544.66%0.27%1.5%96.43%
USAirRDULGA5410.93%0.71%2.21%79.41%
American EagleXNAORD544.6%0.09%4.12%90%
SouthwestSANAUS5425.74%1.47%0.61%100%
SouthwestAMAABQ5425.74%0.09%0.8%100%
AmericanAUSLAX5410.03%0.61%3.21%46.55%
Continental ExpressEWRMKE544.66%1.49%0.33%100%
SouthwestPHXRDU5325.74%3.62%0.71%100%
SouthwestLAXMSY5325.74%3.21%0.94%41.73%
NorthwestPVDMSP539.74%0.69%2.83%100%
SouthwestABQOAK5325.74%0.8%1.47%100%
Continental ExpressATLCLE534.66%5.17%1.49%32.92%
AmericanCLEDFW5310.03%1.49%5.16%23.66%
SouthwestSTLABQ5325.74%1.19%0.8%96.36%
SouthwestPHXIND5325.74%3.62%0.65%46.49%
USAirPHLMCO5310.93%2.23%1.97%51.96%
DeltaFLLISP539.32%1.05%0.38%41.09%
NorthwestMSYMSP539.74%0.95%2.83%100%
SouthwestABQSEA5325.74%0.8%2.03%100%
AmericanRNODFW5310.03%0.58%5.16%100%
SouthwestMCIIND5325.74%1.18%0.65%100%
ATAMDWCLT530.88%1.92%2.06%100%
SouthwestBUFMCO5325.74%0.36%1.97%96.36%
American EagleORDBNA534.6%4.12%1.24%63.1%
NorthwestPDXDTW539.74%1.04%2.37%100%
NorthwestSATDTW539.74%0.54%2.37%100%
USAirPITMCO5310.93%1.31%1.97%79.1%
SouthwestORFJAX5325.74%0.26%0.46%100%
SouthwestBHMLAS5325.74%0.35%3.22%100%
Continental ExpressEWRSTL534.66%1.49%1.19%98.15%
USAirDCABUF5310.93%1.94%0.36%100%
USAirMKECLT5310.93%0.33%2.06%100%
SouthwestMSYBWI5325.74%0.95%2.08%96.36%
USAirSJUBOS5310.93%0.19%1.68%100%
Continental ExpressCLEATL524.66%1.49%5.18%33.99%
NorthwestDTWSAT529.74%2.36%0.54%100%
AmericanDFWRNO5210.03%5.16%0.58%100%
SouthwestLAXBWI5225.74%3.21%2.08%40%
USAirMSYLGA5210.93%0.95%2.21%73.24%
AmericanSYRORD5210.03%0.17%4.12%89.66%
Continental ExpressORFCLE524.66%0.26%1.49%100%
USAirROCDCA5210.93%0.21%1.94%100%
USAirSANCLT5210.93%1.47%2.06%100%
USAirDCAPWM5210.93%1.94%0.09%100%
UnitedBWILAX529.5%2.09%3.21%33.55%
Continental ExpressCLERDU524.66%1.49%0.71%100%
UnitedATLDEN529.5%5.17%2.09%32.5%
DeltaTPAJFK529.32%1.42%1.07%30.59%
USAirDCABTV5210.93%1.94%0.09%100%
SouthwestMHTPHL5225.74%0.47%2.24%19.26%
SouthwestABQSTL5225.74%0.8%1.19%89.66%
AmericanORDSYR5210.03%4.12%0.17%89.66%
UnitedORDIND529.5%4.12%0.65%48.15%
UnitedSFOATL529.5%1.31%5.18%33.55%
USAirSANPHL5210.93%1.47%2.24%100%
UnitedDTWDEN529.5%2.36%2.09%29.55%
DeltaINDATL529.32%0.65%5.18%100%
SouthwestMCISEA5225.74%1.18%2.03%100%
USAirRSWPHL5210.93%0.34%2.24%94.55%
UnitedDENMCI529.5%2.08%1.18%100%
SouthwestBUFPHX5225.74%0.36%3.62%100%
SouthwestLASMSY5125.74%3.22%0.94%91.07%
SouthwestCMHSTL5125.74%0.5%1.19%96.23%
NorthwestDTWPDX519.74%2.36%1.04%100%
USAirPITRIC5110.93%1.31%0.27%100%
AmericanRDUMIA5110.03%0.71%0.69%100%
AmericanMIABOS5110.03%0.69%1.68%100%
USAirPWMDCA5110.93%0.1%1.94%100%
ContinentalFLLCLE512.07%1.05%1.49%100%
USAirSEACLT5110.93%2.03%2.06%100%
Continental ExpressALBEWR514.66%0.32%1.5%100%
American EagleALBORD514.6%0.32%4.12%39.53%
ContinentalMIAEWR512.07%0.69%1.5%75%
USAirPHLFLL5110.93%2.23%1.05%66.23%
American EagleJFKBWI514.6%1.07%2.08%83.61%
JetblueJFKSAN511.4%1.07%1.47%45.95%
SouthwestCMHTPA5125.74%0.5%1.41%44.35%
ContinentalCLEFLL512.07%1.49%1.05%100%
AmericanMSPORD5110.03%2.83%4.12%22.57%
American EagleLFTDFW514.6%0.05%5.16%62.2%
NorthwestMKEMEM519.74%0.33%0.65%100%
SouthwestELPSAN5125.74%0.42%1.47%100%
SouthwestSATMCO5125.74%0.54%1.97%96.23%
USAirCLTMHT5110.93%2.06%0.47%100%
AmericanLGABNA5110.03%2.21%1.24%89.47%
UnitedMIALAX519.5%0.69%3.21%35.92%
American EagleORDALB514.6%4.12%0.32%39.53%
SouthwestINDMCI5125.74%0.65%1.18%100%
American EagleBWIJFK514.6%2.09%1.07%96.23%
SouthwestBHMPHX5125.74%0.35%3.62%100%
ContinentalLGACLE512.07%2.21%1.49%24.17%
UnitedDFWSFO509.5%5.16%1.32%16.45%
DeltaMEMATL509.32%0.65%5.18%69.44%
DeltaLITDFW509.32%0.25%5.16%20.83%
UnitedSJUSTT509.5%0.19%0.02%92.59%
Continental ExpressEWRRDU504.66%1.49%0.71%63.29%
UnitedPDXIAD509.5%1.04%1.13%100%
SouthwestSATLAX5025.74%0.54%3.21%98.04%
JetblueLGBLAS501.4%0.19%3.22%100%
ContinentalEWRORD502.07%1.49%4.12%14.71%
SouthwestORFMCO5025.74%0.26%1.97%96.15%
American EagleDFWOKC504.6%5.16%0.26%27.17%
Continental ExpressEWRPIT504.66%1.49%1.32%29.07%
American EagleOKCDFW504.6%0.26%5.16%25.91%
USAirSFOCLT5010.93%1.31%2.06%100%
AmericanLGAFLL5010.03%2.21%1.05%32.47%
AmericanHNLLAX5010.03%0.08%3.21%55.56%
USAirRICPIT5010.93%0.27%1.32%100%
ContinentalEWRMIA502.07%1.49%0.69%81.97%
USAirLGARDU5010.93%2.21%0.71%92.59%
SouthwestLBBAUS5025.74%0.12%0.61%100%
SouthwestPHLRDU5025.74%2.23%0.71%23.04%
SouthwestRDUMCO5025.74%0.71%1.97%56.18%
UnitedBWISFO509.5%2.09%1.32%67.57%
Continental ExpressPVDEWR504.66%0.69%1.5%80.65%
DeltaDFWLIT509.32%5.16%0.25%21.01%
SouthwestLASBHM5025.74%3.22%0.35%100%
UnitedORDCLT509.5%4.12%2.06%25.13%
Continental ExpressCVGIAH494.66%0.95%1.92%77.78%
UnitedORDIAH499.5%4.12%1.92%28.82%
USAirBUFDCA4910.93%0.36%1.94%100%
SouthwestMCORDU4925.74%1.97%0.71%56.98%
UnitedSJCIAD499.5%1.11%1.13%100%
SouthwestELPLAS4925.74%0.42%3.22%85.96%
AmericanBOSSFO4910.03%1.68%1.32%34.03%
Continental ExpressPVDCLE494.66%0.69%1.49%90.74%
Atlantic SoutheastDFWHOU494.57%5.16%0.99%69.01%
ContinentalEWRCLE492.07%1.49%1.49%100%
Continental ExpressMSPCLE494.66%2.83%1.49%39.84%
SouthwestPHLMCO4925.74%2.23%1.97%48.04%
SouthwestSEAABQ4925.74%2.03%0.8%100%
AmericanSTLLAX4910.03%1.19%3.21%74.24%
Continental ExpressIAHOMA494.66%1.92%0.27%74.24%
UnitedIADMIA499.5%1.14%0.69%100%
Atlantic SoutheastHOUDFW494.57%0.99%5.16%69.01%
American EagleDFWLFT494.6%5.16%0.05%62.82%
UnitedOMADEN499.5%0.27%2.09%100%
JetblueBTVJFK491.4%0.09%1.07%100%
USAirCLTSFO4910.93%2.06%1.32%100%
JetblueJFKBTV491.4%1.07%0.09%100%
SouthwestSDFPHX4925.74%0.29%3.62%100%
SouthwestSANMCI4925.74%1.47%1.18%100%
ContinentalDENIAH492.07%2.08%1.92%41.53%
SouthwestMCIPVD4925.74%1.18%0.68%100%
American EagleISPBOS484.6%0.37%1.68%100%
USAirSFOPIT4810.93%1.31%1.32%100%
American EaglePWMBOS484.6%0.1%1.68%90.57%
American EagleBOSPWM484.6%1.68%0.09%90.57%
UnitedLAXBOS489.5%3.21%1.68%50.53%
DeltaATLMSP489.32%5.17%2.83%19.12%
Continental ExpressCLESDF484.66%1.49%0.29%100%
Continental ExpressEWRSAV484.66%1.49%0.12%100%
SouthwestABQPDX4825.74%0.8%1.04%100%
Continental ExpressIAHCVG484.66%1.92%0.96%75%
Continental ExpressIAHMOB484.66%1.92%0.04%100%
USAirPITSEA4810.93%1.31%2.03%100%
USAirROCCLT4810.93%0.21%2.06%100%
AmericanSANSJC4810.03%1.47%1.11%13.22%
SouthwestBNASEA4825.74%1.24%2.03%100%
Continental ExpressALBCLE484.66%0.32%1.49%100%
Continental ExpressAMAIAH484.66%0.09%1.92%100%
UnitedDENOMA489.5%2.08%0.27%100%
SouthwestSDFBHM4825.74%0.29%0.35%100%
USAirLAXPIT4810.93%3.21%1.32%100%
Continental ExpressMOBIAH484.66%0.04%1.92%100%
AmericanAUSHOU4810.03%0.61%0.99%19.51%
American EagleBOSISP484.6%1.68%0.38%100%
JetblueOAKIAD481.4%1.47%1.13%52.17%
Continental ExpressIAHAMA484.66%1.92%0.09%100%
SouthwestBWIMSY4825.74%2.09%0.94%97.96%
ContinentalIAHMCI482.07%1.92%1.18%47.06%
USAirRDUDCA4810.93%0.71%1.94%100%
DeltaRSWBOS489.32%0.34%1.68%87.27%
UnitedSFODFW489.5%1.31%5.16%18.75%
DeltaBOSRSW489.32%1.68%0.34%87.27%
Continental ExpressBWIEWR484.66%2.09%1.5%96%
USAirFLLPIT4810.93%1.05%1.32%100%
NorthwestINDMEM489.74%0.65%0.65%100%
Continental ExpressSDFEWR484.66%0.29%1.5%100%
SouthwestPVDMCI4725.74%0.69%1.18%100%
AmericanLAXBOS4710.03%3.21%1.68%49.47%
American EagleMKEORD474.6%0.33%4.12%97.92%
USAirCLTSAN4710.93%2.06%1.47%100%
DeltaSATATL479.32%0.54%5.18%100%
Continental ExpressCLELEX474.66%1.49%0.09%100%
SouthwestBHMSDF4725.74%0.35%0.29%100%
AmericanHOULGA4710.03%0.99%2.21%100%
America WestINDPHX472.83%0.65%3.62%44.76%
DeltaLGACVG479.32%2.21%0.96%79.66%
SouthwestLITPHX4725.74%0.25%3.62%100%
Continental ExpressOMAIAH474.66%0.27%1.92%73.44%
Continental ExpressINDIAH474.66%0.65%1.92%56.63%
America WestPHXIND472.83%3.62%0.65%41.23%
AmericanLAXHNL4710.03%3.21%0.08%52.81%
USAirPITSTL4710.93%1.31%1.19%100%
Continental ExpressMHTCLE474.66%0.47%1.49%95.92%
AmericanSFOBOS4710.03%1.31%1.68%33.81%
SouthwestAUSSAN4725.74%0.61%1.47%100%
DeltaLGAPBI479.32%2.21%0.4%47.96%
UnitedLAXIAH479.5%3.21%1.92%88.68%
Continental ExpressCLEORF474.66%1.49%0.26%100%
UnitedCLTORD479.5%2.06%4.12%23.15%
AmericanBOSMIA4710.03%1.68%0.69%100%
SouthwestPHXSDF4625.74%3.62%0.29%100%
DeltaSLCDFW469.32%0.8%5.16%34.59%
DeltaSLCSEA469.32%0.8%2.03%31.72%
SouthwestABQTPA4625.74%0.8%1.41%100%
DeltaBDLCVG469.32%0.63%0.96%100%
American EagleORDMKE464.6%4.12%0.33%97.87%
Continental ExpressSDFCLE464.66%0.29%1.49%100%
SouthwestJAXBHM4625.74%0.46%0.35%100%
SouthwestSANELP4625.74%1.47%0.42%100%
DeltaSLCLAX469.32%0.8%3.21%27.71%
DeltaISPMCO469.32%0.37%1.97%31.08%
Continental ExpressBUFEWR464.66%0.36%1.5%64.79%
SouthwestTPASAT4625.74%1.42%0.54%100%
USAirAVLCLT4610.93%0.21%2.06%100%
USAirCLTAVL4610.93%2.06%0.21%100%
AmericanDFWRSW4610.03%5.16%0.34%100%
SouthwestMDWJAN4625.74%1.92%0.1%100%
USAirBNADCA4610.93%1.24%1.94%100%
USAirCLTPBI4610.93%2.06%0.4%100%
ContinentalORDEWR462.07%4.12%1.5%11.76%
USAirBWILAX4610.93%2.09%3.21%29.68%
American EagleORDATL464.6%4.12%5.18%14.56%
SouthwestSEAMCI4625.74%2.03%1.18%100%
AmericanSJCLAX4610.03%1.11%3.21%9.29%
Continental ExpressPITEWR464.66%1.31%1.5%26.9%
AmericanDFWPSP4610.03%5.16%0.07%100%
DeltaBDLTPA469.32%0.63%1.41%62.16%
SouthwestBOIOAK4625.74%0.23%1.47%100%
American EagleATLORD464.6%5.17%4.12%13.61%
USAirPHLLGA4610.93%2.23%2.21%100%
ContinentalEWRDEN462.07%1.49%2.09%27.71%
AmericanRSWDFW4610.03%0.34%5.16%100%
Continental ExpressRDUEWR464.66%0.71%1.5%61.33%
AlaskaPDXANC462.45%1.04%0.22%100%
USAirSYRDCA4610.93%0.17%1.94%100%
DeltaSNAATL469.32%0.56%5.18%100%
DeltaATLSNA469.32%5.17%0.56%100%
AmericanBOSLAX4610.03%1.68%3.21%37.4%
Continental ExpressROCEWR464.66%0.21%1.5%97.87%
NorthwestMSPJAX469.74%2.83%0.46%100%
USAirDCACHS4510.93%1.94%0.14%81.82%
Continental ExpressIAHCOS454.66%1.92%0.12%67.16%
Continental ExpressROCCLE454.66%0.21%1.49%100%
SouthwestLASBUF4525.74%3.22%0.36%100%
UnitedORDRSW459.5%4.12%0.34%64.29%
USAirLGAPHL4510.93%2.21%2.24%100%
ContinentalIAHJAX452.07%1.92%0.46%51.72%
DeltaMCOCVG459.32%1.97%0.96%73.77%
NorthwestMEMMSY459.74%0.65%0.94%100%
Continental ExpressEWRSDF454.66%1.49%0.29%100%
JetblueSANJFK451.4%1.47%1.07%42.86%
AmericanPSPDFW4510.03%0.07%5.16%100%
ContinentalIAHEWR452.07%1.92%1.5%100%
DeltaMCOMCI459.32%1.97%1.18%25%
Continental ExpressCLEPVD454.66%1.49%0.68%90%
AmericanLAXBNA4510.03%3.21%1.24%24.86%
ContinentalIAHTUL452.07%1.92%0.29%43.27%
Continental ExpressCOSIAH454.66%0.12%1.92%67.16%
UnitedRSWORD459.5%0.34%4.12%64.29%
DeltaMCOSLC459.32%1.97%0.79%100%
NorthwestMEMPHX459.74%0.65%3.62%100%
NorthwestMSPMSY459.74%2.83%0.94%100%
Atlantic SoutheastILEDFW454.57%0.12%5.16%10.79%
USAirSRQCLT4510.93%0.06%2.06%100%
USAirBWIBOS4510.93%2.09%1.68%97.83%
SouthwestINDPHX4525.74%0.65%3.62%42.86%
DeltaMCIMCO459.32%1.18%1.97%24.73%
Atlantic SoutheastDFWILE454.57%5.16%0.12%10.84%
USAirLGARIC4510.93%2.21%0.27%80.36%
USAirSFOPHL4510.93%1.31%2.24%31.03%
ContinentalTULIAH452.07%0.29%1.92%45%
USAirCLTMCO4510.93%2.06%1.97%100%
SouthwestSANSFO4525.74%1.47%1.32%27.61%
America WestSANLAS442.83%1.47%3.22%8.89%
SouthwestBHMJAX4425.74%0.35%0.46%100%
DeltaEWRATL449.32%1.49%5.18%19.05%
USAirPHLSFO4410.93%2.23%1.32%26.35%
DeltaBNAMCO449.32%1.24%1.97%22.8%
USAirCLTSRQ4410.93%2.06%0.06%100%
American EagleRDUJFK444.6%0.71%1.07%73.33%
NorthwestJAXMSP449.74%0.46%2.83%100%
AlaskaPDXOAK442.45%1.04%1.47%19.3%
American EagleCRPDFW444.6%0.05%5.16%100%
DeltaATLGSP449.32%5.17%0.07%83.02%
Continental ExpressSAVEWR444.66%0.12%1.5%100%
Continental ExpressCLEISP444.66%1.49%0.38%100%
UnitedPDXLAX449.5%1.04%3.21%18.57%
UnitedOAKIAD449.5%1.47%1.13%47.83%
AlaskaRNOLAX442.45%0.58%3.21%31.43%
Continental ExpressIAHTYS444.66%1.92%0.13%100%
DeltaMCOBNA449.32%1.97%1.24%27.85%
DeltaGSPATL449.32%0.07%5.18%81.48%
DeltaDFWMEM449.32%5.16%0.65%60.27%
Continental ExpressEWRGSP444.66%1.49%0.07%100%
Continental ExpressISPCLE444.66%0.37%1.49%100%
UnitedATLSFO449.5%5.17%1.32%31.21%
Continental ExpressEWRCHS444.66%1.49%0.14%95.65%
Continental ExpressEWRCMH444.66%1.49%0.5%61.11%
USAirLAXCLT4410.93%3.21%2.06%100%
NorthwestFNTDTW449.74%0.02%2.37%100%
UnitedSJUIAD449.5%0.19%1.13%86.27%
NorthwestMEMMKE449.74%0.65%0.33%100%
USAirGSOLGA4410.93%0.14%2.21%72.13%
UnitedIAHSFO439.5%1.92%1.32%69.35%
SouthwestSDFTPA4325.74%0.29%1.41%100%
SouthwestLASALB4325.74%3.22%0.32%100%
SouthwestJAXORF4325.74%0.46%0.26%100%
USAirPHLCLE4310.93%2.23%1.49%31.39%
USAirDCASYR4310.93%1.94%0.17%100%
SouthwestSFOPHX4325.74%1.31%3.62%14.78%
SouthwestSMFMCI4325.74%1.04%1.18%100%
American EagleBPTDFW434.6%0.02%5.16%100%
ComairCVGDTW431.28%0.95%2.37%100%
DeltaTPABDL439.32%1.42%0.63%55.13%
DeltaATLPHX439.32%5.17%3.62%93.48%
AmericanSJCORD4310.03%1.11%4.12%19.55%
DeltaISPFLL439.32%0.37%1.05%37.07%
NorthwestMSYMEM439.74%0.95%0.65%100%
SouthwestCRPHOU4325.74%0.05%0.99%100%
SouthwestAUSMCO4325.74%0.61%1.97%100%
AmericanPBILGA4310.03%0.4%2.21%56.58%
NorthwestMSPFLL439.74%2.83%1.05%100%
USAirRICLGA4310.93%0.27%2.21%84.31%
USAirLGAMSY4310.93%2.21%0.94%70.49%
UnitedPITORD439.5%1.31%4.12%30.94%
NorthwestDTWFNT439.74%2.36%0.02%100%
SouthwestBWIABQ4325.74%2.09%0.8%100%
DeltaTPACVG439.32%1.42%0.96%93.48%
SouthwestSFOSAN4325.74%1.31%1.47%24.43%
Continental ExpressCLECVG434.66%1.49%0.96%33.08%
SouthwestMCISAN4325.74%1.18%1.47%100%
DeltaATLSAT439.32%5.17%0.54%100%
NorthwestMEMFLL439.74%0.65%1.05%100%
Continental ExpressMKEEWR434.66%0.33%1.5%100%
AmericanLGAPBI4310.03%2.21%0.4%43.88%
USAirCLTSYR4310.93%2.06%0.17%100%
SouthwestPHXBHM4325.74%3.62%0.35%100%
SouthwestDTWPHX4225.74%2.36%3.62%19.81%
SouthwestHOUCRP4225.74%0.99%0.05%100%
AlaskaOAKPDX422.45%1.47%1.04%17.14%
USAirSTLPIT4210.93%1.19%1.32%100%
ContinentalBWICLE422.07%2.09%1.49%22.95%
Continental ExpressCLEBUF424.66%1.49%0.36%100%
SouthwestBNAONT4225.74%1.24%0.77%100%
AmericanSTLLGA4210.03%1.19%2.21%100%
American EagleJFKRDU424.6%1.07%0.71%95.45%
NorthwestFLLMSP429.74%1.05%2.83%100%
ContinentalCLEDEN422.07%1.49%2.09%67.74%
AmericanORDBUF4210.03%4.12%0.36%29.58%
ContinentalCLERSW422.07%1.49%0.34%100%
USAirMKEPIT4210.93%0.33%1.32%100%
SouthwestMCOJAN4225.74%1.97%0.1%100%
DeltaMKECVG429.32%0.33%0.96%77.78%
America WestPDXLAS422.83%1.04%3.22%15.85%
AmericanJFKDFW4210.03%1.07%5.16%100%
Continental ExpressCMHEWR424.66%0.5%1.5%61.76%
NorthwestIADMSP429.74%1.14%2.83%100%
DeltaCVGEWR429.32%0.95%1.5%24.42%
UnitedORDPIT429.5%4.12%1.32%26.58%
AmericanDFWJFK4210.03%5.16%1.07%100%
SouthwestOAKBOI4225.74%1.47%0.23%100%
Continental ExpressTYSEWR424.66%0.14%1.5%100%
American EagleDFWCRP424.6%5.16%0.05%100%
SouthwestTPAPHX4225.74%1.42%3.62%100%
UnitedORDALB429.5%4.12%0.32%32.56%
SouthwestRDUPHL4225.74%0.71%2.24%19.27%
UnitedALBORD429.5%0.32%4.12%32.56%
Continental ExpressIAHJAX424.66%1.92%0.46%48.28%
SouthwestSLCMCI4225.74%0.8%1.18%100%
NorthwestMSOMSP429.74%0.01%2.83%100%
USAirJAXDCA4210.93%0.46%1.94%84%
USAirPHLMIA4210.93%2.23%0.69%84%
NorthwestDTWSNA419.74%2.36%0.56%100%
Continental ExpressEWRBWI414.66%1.49%2.08%100%
SouthwestSATBNA4125.74%0.54%1.24%100%
Continental ExpressCHSEWR414.66%0.14%1.5%95.35%
Continental ExpressIAHLCH414.66%1.92%0.01%100%
AmericanORDIND4110.03%4.12%0.65%37.96%
DeltaFLLLGA419.32%1.05%2.21%28.87%
Continental ExpressJAXIAH414.66%0.46%1.92%51.25%
Continental ExpressRICCLE414.66%0.27%1.49%100%
SouthwestMCOIND4125.74%1.97%0.65%30.6%
ContinentalRSWCLE412.07%0.34%1.49%100%
Continental ExpressCLEALB414.66%1.49%0.32%100%
USAirMKEPHL4110.93%0.33%2.24%100%
Continental ExpressSTLCLE414.66%1.19%1.49%30.83%
NorthwestSJCDTW419.74%1.11%2.37%100%
ContinentalCLEBWI412.07%1.49%2.08%19.81%
AmericanINDORD4110.03%0.65%4.12%35.65%
USAirBOSBWI4110.93%1.68%2.08%97.62%
Continental ExpressCLESTL414.66%1.49%1.19%39.05%
USAirPITFLL4110.93%1.31%1.05%100%
AmericanBUFORD4110.03%0.36%4.12%28.87%
NorthwestMSPMSO419.74%2.83%0.01%100%
NorthwestSNADTW419.74%0.56%2.37%100%
SouthwestPHXSFO4125.74%3.62%1.32%15.83%
SouthwestLASORF4125.74%3.22%0.26%100%
AmericanSJCSNA4110.03%1.11%0.56%26.8%
USAirDCARDU4110.93%1.94%0.71%100%
American EagleDFWBPT414.6%5.16%0.02%100%
UnitedORDMSY419.5%4.12%0.94%33.06%
Continental ExpressLCHIAH414.66%0.01%1.92%100%
SouthwestPHXLIT4125.74%3.62%0.25%100%
SouthwestAUSMAF4125.74%0.61%0.12%100%
American EagleDFWMSP404.6%5.16%2.83%19.61%
American EagleOMAORD404.6%0.27%4.12%60.61%
SouthwestMCOSAT4025.74%1.97%0.54%93.02%
American EagleHPNBOS404.6%0.09%1.68%100%
USAirPBIPHL4010.93%0.4%2.24%80%
AlaskaLAXSFO402.45%3.21%1.32%12.58%
American EagleORDOMA404.6%4.12%0.27%59.7%
American EagleBOSPHL404.6%1.68%2.24%8.91%
NorthwestPSPMSP409.74%0.07%2.83%100%
America WestLASOAK402.83%3.22%1.47%9.48%
UnitedLAXMIA409.5%3.21%0.69%30.53%
SouthwestMCIMHT4025.74%1.18%0.47%100%
USAirSANPIT4010.93%1.47%1.32%100%
DeltaAUSATL409.32%0.61%5.18%100%
ATAMDWRSW400.88%1.92%0.34%90.91%
Continental ExpressPWMEWR404.66%0.1%1.5%100%
American EagleBOSHPN404.6%1.68%0.09%100%
ContinentalIAHOKC402.07%1.92%0.26%38.1%
NorthwestMSPDLH409.74%2.83%0.01%100%
NorthwestMSPPSP409.74%2.83%0.07%100%
USAirMIAPHL4010.93%0.69%2.24%74.07%
SouthwestPDXABQ4025.74%1.04%0.8%100%
Continental ExpressIAHELP404.66%1.92%0.42%68.97%
ATARSWMDW400.88%0.34%1.92%90.91%
American EagleMSPDFW404.6%2.83%5.16%19.8%
ContinentalOKCIAH402.07%0.26%1.92%37.74%
SouthwestBWISAN4025.74%2.09%1.47%100%
UnitedMSYORD409.5%0.95%4.12%33.61%
DeltaBOSCVG409.32%1.68%0.96%97.56%
American EagleALBJFK404.6%0.32%1.07%100%
Continental ExpressELPIAH404.66%0.42%1.92%68.97%
USAirPITSFO4010.93%1.31%1.32%100%
ContinentalJAXIAH392.07%0.46%1.92%48.75%
ContinentalDTWEWR392.07%2.36%1.5%13.88%
Atlantic SoutheastIAHDFW394.57%1.92%5.16%12.79%
American EaglePHLBOS394.6%2.23%1.68%8.44%
UnitedSFOIAH399.5%1.31%1.92%67.24%
DeltaLAXDFW399.32%3.21%5.16%10.34%
Continental ExpressIAHGSP394.66%1.92%0.07%100%
SouthwestPHXBUF3925.74%3.62%0.36%100%
NorthwestDTWSJC399.74%2.36%1.11%100%
NorthwestDTWMSY399.74%2.36%0.94%100%
Continental ExpressIAHSHV394.66%1.92%0.12%100%
Continental ExpressCVGCLE394.66%0.95%1.49%33.33%
Continental ExpressIAHAEX394.66%1.92%0.02%100%
NorthwestJAXDTW399.74%0.46%2.37%100%
American EagleDFWMKE394.6%5.16%0.33%100%
American EagleJFKALB394.6%1.07%0.32%100%
SouthwestABQMDW3925.74%0.8%1.92%100%
SouthwestMHTMCI3925.74%0.47%1.18%100%
DeltaCVGMCI399.32%0.95%1.18%66.1%
Continental ExpressMKEIAH394.66%0.33%1.92%92.86%
SouthwestAUSLBB3925.74%0.61%0.12%100%
AmericanLGAMCO3910.03%2.21%1.97%48.15%
JetblueJFKDEN391.4%1.07%2.09%97.5%
AmericanLGASTL3910.03%2.21%1.19%100%
USAirLGAROC3910.93%2.21%0.21%100%
NorthwestMEMORD399.74%0.65%4.12%100%
NorthwestMSPIAD399.74%2.83%1.13%100%
ContinentalDENCLE392.07%2.08%1.49%53.42%
NorthwestDLHMSP399.74%0.01%2.83%100%
SouthwestMSYOAK3925.74%0.95%1.47%100%
USAirPITMKE3910.93%1.31%0.33%100%
Atlantic SoutheastDFWIAH394.57%5.16%1.92%11.47%
AlaskaPSPSEA392.45%0.07%2.03%100%
Continental ExpressEWRPWM394.66%1.49%0.09%100%
Continental ExpressICTIAH394.66%0.05%1.92%100%
AmericanORDHNL3910.03%4.12%0.08%97.5%
Continental ExpressAEXIAH394.66%0.02%1.92%100%
Continental ExpressSHVIAH394.66%0.12%1.92%100%
Continental ExpressIAHICT394.66%1.92%0.05%100%
SouthwestSTLLAS3925.74%1.19%3.22%72.22%
DeltaLASCVG399.32%3.22%0.96%100%
AmericanHNLDFW3810.03%0.08%5.16%100%
America WestLASSAN382.83%3.22%1.47%7.48%
Continental ExpressCLEBNA384.66%1.49%1.24%19.19%
UnitedABQDEN389.5%0.8%2.09%100%
Continental ExpressEWRBUF384.66%1.49%0.36%60.32%
Continental ExpressGSPIAH384.66%0.07%1.92%100%
UnitedIAHORD389.5%1.92%4.12%24.05%
SouthwestLBBELP3825.74%0.12%0.42%100%
USAirMCOCLT3810.93%1.97%2.06%100%
SouthwestMAFELP3825.74%0.12%0.42%100%
SouthwestSLCBWI3825.74%0.8%2.08%97.44%
JetblueDENJFK381.4%2.08%1.07%97.44%
UnitedSMFLAX389.5%1.04%3.21%9.22%
ContinentalIAHRDU382.07%1.92%0.71%64.41%
AmericanORDSJC3810.03%4.12%1.11%16.31%
UnitedDENFLL389.5%2.08%1.05%100%
UnitedMDWDEN389.5%1.92%2.09%23.75%
Continental ExpressEWRBTV384.66%1.49%0.09%100%
American EagleMKEDFW384.6%0.33%5.16%100%
ContinentalRDUIAH382.07%0.71%1.92%64.41%
AmericanSNASJC3810.03%0.56%1.11%23.75%
Continental ExpressEWRBHM384.66%1.49%0.35%100%
SouthwestTPALAS3825.74%1.42%3.22%97.44%
SouthwestSDFLAS3825.74%0.29%3.22%100%
Continental ExpressCLEMHT384.66%1.49%0.47%95%
ComairDTWCVG381.28%2.36%0.96%100%
DeltaMCOISP389.32%1.97%0.38%28.15%
DeltaATLMKE379.32%5.17%0.33%92.5%
DeltaCVGBHM379.32%0.95%0.35%56.92%
Continental ExpressGPTIAH374.66%0.08%1.92%97.37%
Continental ExpressIAHGPT374.66%1.92%0.08%97.37%
ContinentalIAHIND372.07%1.92%0.65%37.37%
USAirCLTALB3710.93%2.06%0.32%100%
USAirMSYPIT3710.93%0.95%1.32%100%
UnitedDENIND379.5%2.08%0.65%84.09%
USAirROCLGA3710.93%0.21%2.21%100%
USAirCMHLGA3710.93%0.5%2.21%100%
SouthwestPHXTPA3725.74%3.62%1.41%100%
SouthwestOAKMSY3725.74%1.47%0.94%100%
USAirPHLRSW3710.93%2.23%0.34%92.5%
AmericanDFWLIT3710.03%5.16%0.25%15.55%
NorthwestDTWJAX379.74%2.36%0.46%100%
UnitedIADPHX379.5%1.14%3.62%100%
UnitedIADSMF379.5%1.14%1.04%77.08%
AmericanBNAORD3710.03%1.24%4.12%38.95%
USAirLGACMH3710.93%2.21%0.5%100%
Continental ExpressTYSIAH374.66%0.14%1.92%100%
Continental ExpressCLEDFW374.66%1.49%5.16%16.52%
Continental ExpressEWRMHT374.66%1.49%0.47%92.5%
ContinentalLGAIAH372.07%2.21%1.92%100%
DeltaCVGTPA379.32%0.95%1.41%92.5%
UnitedFLLDEN379.5%1.05%2.09%100%
UnitedLAXSMF379.5%3.21%1.04%9.69%
SouthwestBWISLC3725.74%2.09%0.79%97.37%
SouthwestBUFLAS3725.74%0.36%3.22%100%
AmericanIAHMIA3710.03%1.92%0.69%31.09%
AmericanLITDFW3710.03%0.25%5.16%15.42%
ContinentalMCIIAH372.07%1.18%1.92%40.22%
SouthwestMCISJC3725.74%1.18%1.11%100%
SouthwestONTBNA3725.74%0.77%1.24%100%
SouthwestRDUMCI3725.74%0.71%1.18%100%
ContinentalEWRDTW362.07%1.49%2.37%12.86%
DeltaCVGMKE369.32%0.95%0.33%76.6%
UnitedDENABQ369.5%2.08%0.8%100%
AmericanORDALB3610.03%4.12%0.32%27.91%
SouthwestLBBABQ3625.74%0.12%0.8%100%
NorthwestMEMIND369.74%0.65%0.65%100%
ContinentalCMHIAH362.07%0.5%1.92%72%
USAirDAYPIT3610.93%0.12%1.32%100%
America WestOAKLAS362.83%1.47%3.22%9.6%
Continental ExpressEWRCAE364.66%1.49%0.11%100%
USAirPHLMKE3610.93%2.23%0.33%100%
America WestPHXBOI362.83%3.62%0.23%100%
UnitedLAXOAK369.5%3.21%1.47%4.55%
UnitedPHXIAD369.5%3.62%1.13%100%
SouthwestBNASAT3625.74%1.24%0.54%100%
America WestBOIPHX362.83%0.23%3.62%100%
Continental ExpressDFWCLE364.66%5.16%1.49%15.93%
SouthwestSTLBHM3625.74%1.19%0.35%100%
Continental ExpressCHSIAH364.66%0.14%1.92%100%
SouthwestMCISLC3625.74%1.18%0.79%100%
DeltaATLEWR369.32%5.17%1.5%16.74%
ContinentalINDIAH362.07%0.65%1.92%43.37%
AmericanLAXSTL3610.03%3.21%1.19%67.92%
Continental ExpressIAHBPT364.66%1.92%0.02%100%
AmericanALBORD3610.03%0.32%4.12%27.91%
UnitedMSYSFO369.5%0.95%1.32%100%
Continental ExpressBPTIAH364.66%0.02%1.92%100%
SouthwestMAFAUS3625.74%0.12%0.61%100%
SouthwestSLCGEG3625.74%0.8%0.27%100%
DeltaPBICVG359.32%0.4%0.96%100%
AmericanMIARDU3510.03%0.69%0.71%100%
SouthwestTPAABQ3525.74%1.42%0.8%100%
SouthwestINDTPA3525.74%0.65%1.41%100%
SouthwestLASTPA3525.74%3.22%1.41%100%
SouthwestTPABDL3525.74%1.42%0.63%44.87%
UnitedDENMDW359.5%2.08%1.92%22.29%
ATAPITMDW350.88%1.31%1.92%70%
USAirCHSDCA3510.93%0.14%1.94%100%
SouthwestABQBWI3525.74%0.8%2.08%100%
ContinentalSJCIAH352.07%1.11%1.92%100%
USAirCLTLAX3510.93%2.06%3.21%100%
ContinentalIAHSJC352.07%1.92%1.11%100%
AlaskaTUSSEA352.45%0.31%2.03%100%
USAirDCAJAX3510.93%1.94%0.46%83.33%
AmericanBNALAX3510.03%1.24%3.21%18.82%
SouthwestTPASTL3525.74%1.42%1.19%72.92%
SouthwestBHMSTL3525.74%0.35%1.19%100%
SouthwestMSYLAX3525.74%0.95%3.21%36.08%
NorthwestSANDTW359.74%1.47%2.37%100%
ATAMDWPIT350.88%1.92%1.32%67.31%
USAirPITPWM3510.93%1.31%0.09%100%
DeltaMCOSDF359.32%1.97%0.29%58.33%
USAirPHLLAX3510.93%2.23%3.21%21.88%
DeltaSDFMCO359.32%0.29%1.97%64.81%
NorthwestLASLAX359.74%3.22%3.21%3.26%
Continental ExpressCLEGSP354.66%1.49%0.07%100%
Continental ExpressCLEMCI354.66%1.49%1.18%100%
USAirPITORF3510.93%1.31%0.26%100%
NorthwestMSYDTW349.74%0.95%2.37%100%
SouthwestORFLAS3425.74%0.26%3.22%100%
USAirCLTSDF3410.93%2.06%0.29%100%
SouthwestMAFABQ3425.74%0.12%0.8%100%
SouthwestABQSLC3425.74%0.8%0.79%100%
NorthwestCLEMSP349.74%1.49%2.83%37.78%
AlaskaLAXRNO342.45%3.21%0.58%25.56%
ContinentalIAHBWI342.07%1.92%2.08%100%
ContinentalDCAIAH342.07%1.94%1.92%35.42%
DeltaATLAUS349.32%5.17%0.61%100%
JetblueBOSFLL341.4%1.68%1.05%19.32%
Continental ExpressCLETYS344.66%1.49%0.13%100%
SouthwestSANBWI3425.74%1.47%2.08%100%
AmericanSNADFW3410.03%0.56%5.16%100%
SouthwestINDMCO3425.74%0.65%1.97%26.36%
Continental ExpressBUFCLE344.66%0.36%1.49%100%
DeltaEWRCVG349.32%1.49%0.96%21.52%
DeltaTPAMCO349.32%1.42%1.97%100%
SouthwestHOULIT3425.74%0.99%0.25%100%
AmericanHNLORD3410.03%0.08%4.12%97.14%
AlaskaSFOLAX342.45%1.31%3.21%11.56%
DeltaCVGLGA349.32%0.95%2.21%87.18%
AlaskaSEATUS342.45%2.03%0.31%100%
DeltaMCICVG349.32%1.18%0.96%62.96%
SouthwestLITMDW3425.74%0.25%1.92%100%
ATAMDWPHX330.88%1.92%3.62%16.75%
SouthwestLAXSAT3325.74%3.21%0.54%94.29%
AmericanDFWHNL3310.03%5.16%0.08%100%
SouthwestHOUMAF3325.74%0.99%0.12%100%
AmericanIAHORD3310.03%1.92%4.12%20.89%
Continental ExpressIAHCHS334.66%1.92%0.14%100%
DeltaMCIATL339.32%1.18%5.18%100%
AmericanMCOLGA3310.03%1.97%2.21%40.74%
ComairCVGMDT331.28%0.95%0.17%100%
DeltaTULATL339.32%0.29%5.18%100%
Continental ExpressMCICLE334.66%1.18%1.49%100%
ContinentalINDEWR332.07%0.65%1.5%31.73%
AmericanMDWDFW3310.03%1.92%5.16%19.41%
DeltaABQATL339.32%0.8%5.18%100%
America WestLASMSP332.83%3.22%2.83%8.97%
ContinentalIAHCMH332.07%1.92%0.5%70.21%
ATAINDRSW330.88%0.65%0.34%89.19%
SouthwestAUSRDU3325.74%0.61%0.71%100%
AmericanDFWMDW3310.03%5.16%1.92%19.64%
AmericanDFWSNA3310.03%5.16%0.56%100%
UnitedINDDEN339.5%0.65%2.09%84.62%
SouthwestMSYIND3325.74%0.95%0.65%100%
AlaskaSEAPSP332.45%2.03%0.07%100%
SouthwestGEGSLC3325.74%0.27%0.79%100%
UnitedDENDTW339.5%2.08%2.37%17.84%
ATARSWIND330.88%0.34%0.65%91.67%
ComairCVGRDU331.28%0.95%0.71%71.74%
SouthwestPHLPIT3325.74%2.23%1.32%10.51%
UnitedTUSPHX339.5%0.31%3.62%22.76%
UnitedPHXTUS339.5%3.62%0.31%21.57%
USAirLGAGSO3310.93%2.21%0.14%57.89%
DeltaATLTUL339.32%5.17%0.29%100%
SouthwestSTLIND3225.74%1.19%0.65%78.05%
USAirORFPIT3210.93%0.26%1.32%100%
SouthwestCMHMCO3225.74%0.5%1.97%30.48%
DeltaMKEATL329.32%0.33%5.18%94.12%
Continental ExpressJANIAH324.66%0.1%1.92%100%
Continental ExpressIAHJAN324.66%1.92%0.1%100%
UnitedOAKLAX329.5%1.47%3.21%3.69%
DeltaGSOATL329.32%0.14%5.18%100%
USAirSJUPHL3210.93%0.19%2.24%100%
SouthwestTPASDF3225.74%1.42%0.29%100%
DeltaFLLDFW329.32%1.05%5.16%22.54%
UnitedROCORD329.5%0.21%4.12%45.71%
DeltaMCOLGA329.32%1.97%2.21%39.51%
AmericanLAXCOS3210.03%3.21%0.12%100%
SouthwestFLLPHL3225.74%1.05%2.24%31.68%
American EagleJFKSYR324.6%1.07%0.17%32.32%
SouthwestMCOAUS3225.74%1.97%0.61%100%
AmericanMIASFO3210.03%0.69%1.32%82.05%
SouthwestGEGOAK3225.74%0.27%1.47%100%
DeltaATLGSO329.32%5.17%0.14%100%
DeltaLASPHX329.32%3.22%3.62%4.06%
AmericanLGBORD3210.03%0.19%4.12%100%
America WestONTLAS322.83%0.77%3.22%10.6%
DeltaLAXCVG329.32%3.21%0.96%100%
ContinentalTPAIAH322.07%1.42%1.92%100%
UnitedDENMSP329.5%2.08%2.83%8.96%
Continental ExpressSAVIAH324.66%0.12%1.92%100%
DeltaALBCVG329.32%0.32%0.96%96.97%
ComairMDTCVG321.28%0.17%0.96%100%
NorthwestFLLMEM319.74%1.05%0.65%100%
Continental ExpressIAHMKE314.66%1.92%0.33%91.18%
SouthwestLASAMA3125.74%3.22%0.09%100%
ContinentalBWIIAH312.07%2.09%1.92%100%
SouthwestCMHPHX3125.74%0.5%3.62%96.88%
DeltaDCACVG319.32%1.94%0.96%72.09%
SouthwestMSYLAS3125.74%0.95%3.22%93.94%
AlaskaBOISEA312.45%0.23%2.03%22.79%
USAirDCACMH3110.93%1.94%0.5%81.58%
Continental ExpressIAHHSV314.66%1.92%0.18%100%
SouthwestSTLTPA3125.74%1.19%1.41%70.45%
SouthwestLASSDF3125.74%3.22%0.29%100%
JetblueONTJFK311.4%0.77%1.07%100%
ContinentalEWRIAH312.07%1.49%1.92%100%
UnitedORDROC319.5%4.12%0.21%44.93%
SouthwestMDWLIT3125.74%1.92%0.25%100%
USAirMEMCLT3110.93%0.65%2.06%100%
USAirPWMPIT3110.93%0.1%1.32%100%
American EagleROCJFK314.6%0.21%1.07%24.22%
AlaskaSEABOI312.45%2.03%0.23%22.46%
AmericanBOSMCO3110.03%1.68%1.97%10.03%
ATASFOMDW310.88%1.31%1.92%100%
Continental ExpressBTVEWR314.66%0.09%1.5%100%
SouthwestPHLBDL3125.74%2.23%0.63%19.02%
JetblueJFKONT311.4%1.07%0.77%100%
Atlantic SoutheastLFTDFW314.57%0.05%5.16%37.8%
American EagleJFKROC314.6%1.07%0.21%24.22%
ContinentalEWRDCA312.07%1.49%1.94%30.1%
DeltaMSPATL319.32%2.83%5.18%12.65%
USAirCLTMEM3110.93%2.06%0.65%100%
American EagleGRRORD314.6%0.15%4.12%68.89%
American EagleORDGRR314.6%4.12%0.15%68.89%
DeltaCVGALB319.32%0.95%0.32%96.88%
America WestPHXSAT312.83%3.62%0.54%20.95%
America WestSATPHX312.83%0.54%3.62%17.32%
SouthwestOAKGEG3125.74%1.47%0.27%100%
SouthwestLITHOU3125.74%0.25%0.99%100%
SouthwestRDUAUS3125.74%0.71%0.61%100%
Continental ExpressDFWIAH314.66%5.16%1.92%9.12%
ComairCVGGRR311.28%0.95%0.15%65.96%
Continental ExpressPHLEWR304.66%2.23%1.5%100%
UnitedSMFIAD309.5%1.04%1.13%71.43%
SouthwestLASTUL3025.74%3.22%0.29%100%
AmericanSTLTUL3010.03%1.19%0.29%26.55%
American EagleJFKPIT304.6%1.07%1.32%71.43%
DeltaMSPCVG309.32%2.83%0.96%55.56%
SouthwestAMALAS3025.74%0.09%3.22%100%
AmericanORDBNA3010.03%4.12%1.24%35.71%
American EagleSYRJFK304.6%0.17%1.07%30.93%
ComairGRRCVG301.28%0.15%0.96%65.22%
ATAMDWLAS300.88%1.92%3.22%11.45%
SouthwestSJCMCI3025.74%1.11%1.18%100%
ATAMDWSFO300.88%1.92%1.32%100%
DeltaATLPHL309.32%5.17%2.24%12.71%
JetblueFLLBOS301.4%1.05%1.68%17.96%
America WestPHXCOS302.83%3.62%0.12%100%
American EaglePITJFK304.6%1.31%1.07%73.17%
SouthwestBHMMCO3025.74%0.35%1.97%100%
USAirPITRSW3010.93%1.31%0.34%100%
Continental ExpressMSPEWR304.66%2.83%1.5%16.3%
SouthwestIAHDAL3025.74%1.92%0.48%34.88%
AmericanJFKSJU3010.03%1.07%0.19%26.32%
Continental ExpressBHMEWR304.66%0.35%1.5%100%
ContinentalJAXEWR302.07%0.46%1.5%54.55%
America WestCOSPHX302.83%0.12%3.62%100%
DeltaCVGDCA309.32%0.95%1.94%73.17%
UnitedIADATL309.5%1.14%5.18%20.55%
SouthwestLASLBB3025.74%3.22%0.12%100%
SouthwestTPAPHL3025.74%1.42%2.24%18.07%
SouthwestMAFLAS3025.74%0.12%3.22%100%
SouthwestDALIAH3025.74%0.48%1.92%34.88%
SouthwestMCIRDU3025.74%1.18%0.71%100%
AlaskaSEAFAI302.45%2.03%0.03%100%
AmericanSJUJFK3010.03%0.19%1.07%26.32%
AmericanCOSLAX3010.03%0.12%3.21%100%
USAirABEPHL2910.93%0.15%2.24%100%
Continental ExpressIAHDFW294.66%1.92%5.16%9.51%
UnitedORDPBI299.5%4.12%0.4%59.18%
USAirPHLABE2910.93%2.23%0.15%100%
DeltaJFKPBI299.32%1.07%0.4%17.37%
USAirPHLSJU2910.93%2.23%0.19%100%
NorthwestMSNDTW299.74%0.08%2.37%100%
USAirCHSPHL2910.93%0.14%2.24%100%
SouthwestMDWABQ2925.74%1.92%0.8%100%
ContinentalRSWEWR292.07%0.34%1.5%63.04%
ComairCVGIAD291.28%0.95%1.13%100%
UnitedPBIORD299.5%0.4%4.12%59.18%
ContinentalEWRIND292.07%1.49%0.65%32.22%
SouthwestTPAIND2925.74%1.42%0.65%100%
SouthwestBDLPHL2925.74%0.63%2.24%16.67%
ContinentalIAHTPA292.07%1.92%1.41%100%
Continental ExpressEWRTYS294.66%1.49%0.13%100%
ContinentalRDUEWR292.07%0.71%1.5%38.67%
Continental ExpressBNACLE294.66%1.24%1.49%18.01%
USAirCLTABE2910.93%2.06%0.15%100%
DeltaCOSATL299.32%0.12%5.18%100%
NorthwestDTWSAN299.74%2.36%1.47%100%
NorthwestMSPMHT299.74%2.83%0.47%100%
AlaskaPDXSEA292.45%1.04%2.03%96.67%
AmericanTULSTL2910.03%0.29%1.19%31.87%
DeltaATLCOS299.32%5.17%0.12%100%
ComairGSOCVG291.28%0.14%0.96%72.5%
Continental ExpressMHTEWR294.66%0.47%1.5%90.63%
USAirPITSAN2910.93%1.31%1.47%100%
Atlantic SoutheastDFWLFT294.57%5.16%0.05%37.18%
AmericanBOSSTL2910.03%1.68%1.19%100%
NorthwestMHTMSP299.74%0.47%2.83%100%
NorthwestHNLLAX299.74%0.08%3.21%32.22%
ComairFWACVG291.28%0.01%0.96%100%
USAirPITDTW2910.93%1.31%2.37%100%
AmericanORDLGB2910.03%4.12%0.19%100%
UnitedSTTORD299.5%0.02%4.12%100%
DeltaPBIJFK299.32%0.4%1.07%17.37%
SouthwestELPMAF2925.74%0.42%0.12%100%
ATAMDWPIE290.88%1.92%0.02%100%
ComairCVGBNA291.28%0.95%1.24%74.36%
Continental ExpressIAHATL294.66%1.92%5.18%27.1%
ATAPHXMDW290.88%3.62%1.92%13.74%
ContinentalEWRRDU292.07%1.49%0.71%36.71%
SouthwestPHXCMH2925.74%3.62%0.5%96.67%
DeltaSEACVG299.32%2.03%0.96%100%
ContinentalEWRCMH282.07%1.49%0.5%38.89%
ContinentalEWRRSW282.07%1.49%0.34%63.64%
NorthwestLAXHNL289.74%3.21%0.08%31.46%
ComairCVGGSP281.28%0.95%0.07%100%
DeltaSLCPDX289.32%0.8%1.04%32.18%
American EagleJFKDCA284.6%1.07%1.94%96.55%
Continental ExpressMEMEWR284.66%0.65%1.5%75.68%
Continental ExpressCLERIC284.66%1.49%0.27%100%
USAirCMHPIT2810.93%0.5%1.32%100%
ComairCVGFWA281.28%0.95%0.01%100%
Continental ExpressEWRLEX284.66%1.49%0.09%100%
UnitedMCOSFO289.5%1.97%1.32%100%
AmericanSTLJFK2810.03%1.19%1.07%90.32%
AmericanMCOBOS2810.03%1.97%1.68%9.09%
AlaskaFAISEA282.45%0.03%2.03%100%
ComairCVGBHM281.28%0.95%0.35%43.08%
SouthwestELPLBB2825.74%0.42%0.12%100%
ATAFLLMDW280.88%1.05%1.92%18.67%
America WestMSPLAS282.83%2.83%3.22%8.12%
American EagleDCAJFK284.6%1.94%1.07%96.55%
Continental ExpressATLIAH284.66%5.17%1.92%24.14%
ATALASMDW280.88%3.22%1.92%10.61%
Continental ExpressCAEIAH284.66%0.11%1.92%100%
UnitedSLCORD289.5%0.8%4.12%29.47%
AmericanROCORD2810.03%0.21%4.12%40%
NorthwestMEMLAS289.74%0.65%3.22%100%
ATAPIEMDW280.88%0.02%1.92%100%
UnitedCMHDEN289.5%0.5%2.09%100%
SouthwestINDSTL2825.74%0.65%1.19%75.68%
DeltaPHLATL289.32%2.23%5.18%13.4%
AmericanORDROC2810.03%4.12%0.21%40.58%
SouthwestLBBLAS2825.74%0.12%3.22%100%
SouthwestTPAMCI2825.74%1.42%1.18%100%
SouthwestBNAPBI2825.74%1.24%0.4%100%
SouthwestTULLAS2825.74%0.29%3.22%100%
Continental ExpressIAHSAV284.66%1.92%0.12%100%
SouthwestBDLTPA2825.74%0.63%1.41%37.84%
ComairCHSCVG281.28%0.14%0.96%100%
SouthwestMCOCMH2825.74%1.97%0.5%28.28%
USAirBHMCLT2810.93%0.35%2.06%100%
USAirCLTBHM2810.93%2.06%0.35%100%
DeltaATLONT279.32%5.17%0.77%100%
USAirCLTSJU2710.93%2.06%0.19%100%
UnitedSFOMCO279.5%1.31%1.97%100%
ATASEAMDW270.88%2.03%1.92%27.55%
DeltaONTATL279.32%0.77%5.18%100%
SouthwestSATTPA2725.74%0.54%1.41%100%
American EagleGSODFW274.6%0.14%5.16%96.43%
Continental ExpressTYSCLE274.66%0.14%1.49%100%
ContinentalIAHLGA272.07%1.92%2.21%100%
USAirSDFPIT2710.93%0.29%1.32%100%
Continental ExpressGRREWR274.66%0.15%1.5%100%
AmericanJFKSTL2710.03%1.07%1.19%84.38%
USAirPITSDF2710.93%1.31%0.29%100%
USAirSDFCLT2710.93%0.29%2.06%100%
SouthwestINDMSY2725.74%0.65%0.94%100%
DeltaATLMCI279.32%5.17%1.18%100%
ComairCVGTOL271.28%0.95%0.01%79.41%
Continental ExpressHSVIAH274.66%0.18%1.92%100%
DeltaLGAMCO279.32%2.21%1.97%33.33%
AlaskaANCPDX272.45%0.22%1.04%100%
DeltaSRQATL279.32%0.06%5.18%100%
ATAMDWFLL270.88%1.92%1.05%18.49%
SouthwestMHTLAS2725.74%0.47%3.22%100%
AmericanCLEMIA2710.03%1.49%0.69%71.05%
American EagleJFKBDL274.6%1.07%0.63%100%
ComairIADCVG271.28%1.14%0.96%100%
ATAMDWSEA270.88%1.92%2.03%29.03%
SouthwestMSYJAX2725.74%0.95%0.46%100%
American EagleBDLJFK274.6%0.63%1.07%100%
AmericanMIACLE2710.03%0.69%1.49%71.05%
Continental ExpressCLEROC274.66%1.49%0.21%100%
Continental ExpressEWRAGS274.66%1.49%0.22%100%
American EagleCMHORD274.6%0.5%4.12%31.03%
USAirINDDCA2710.93%0.65%1.94%96.43%
ComairCLTCVG271.28%2.06%0.96%100%
Continental ExpressIAHLEX274.66%1.92%0.09%100%
UnitedORDSLC279.5%4.12%0.79%30.34%
American EaglePVDLGA274.6%0.69%2.21%100%
JetblueBOSOAK271.4%1.68%1.47%100%
American EagleDFWGSO274.6%5.16%0.14%96.43%
USAirPITBTV2710.93%1.31%0.09%100%
UnitedDENCLE279.5%2.08%1.49%36.99%
DeltaCVGBDL279.32%0.95%0.63%100%
UnitedSFOBWI279.5%1.31%2.08%67.5%
DeltaABQDFW279.32%0.8%5.16%14.36%
ComairTOLCVG271.28%0.01%0.96%79.41%
ComairCVGPIT271.28%0.95%1.32%100%
SouthwestPITPHL2725.74%1.31%2.24%8.88%
American EagleBOSBTV264.6%1.68%0.09%96.3%
ComairCVGFNT261.28%0.95%0.02%100%
American EagleORDCMH264.6%4.12%0.5%26.26%
SouthwestBWILIT2625.74%2.09%0.25%100%
USAirCLTDAY2610.93%2.06%0.12%100%
Continental ExpressEWRBDL264.66%1.49%0.63%86.67%
American EagleLGAPVD264.6%2.21%0.68%100%
America WestMSYPHX262.83%0.95%3.62%28.89%
Continental ExpressBDLEWR264.66%0.63%1.5%100%
DeltaBHMCVG269.32%0.35%0.96%56.52%
ContinentalIAHDEN262.07%1.92%2.09%27.96%
USAirDCAMHT2610.93%1.94%0.47%100%
ContinentalDENEWR262.07%2.08%1.5%14.21%
SouthwestPHLFLL2625.74%2.23%1.05%33.77%
Continental ExpressDAYIAH264.66%0.12%1.92%100%
SouthwestLITLAS2625.74%0.25%3.22%100%
DeltaORFATL269.32%0.26%5.18%96.3%
NorthwestHNLSFO269.74%0.08%1.32%60.47%
SouthwestMCITPA2625.74%1.18%1.41%100%
Atlantic SoutheastDFWAEX264.57%5.16%0.02%100%
ContinentalEWRJAX262.07%1.49%0.46%53.06%
Continental ExpressIAHIAD264.66%1.92%1.13%65%
DeltaMCOTPA269.32%1.97%1.41%100%
JetblueOAKBOS261.4%1.47%1.68%100%
NorthwestDTWAUS269.74%2.36%0.61%100%
NorthwestAUSDTW269.74%0.61%2.37%100%
USAirABECLT2610.93%0.15%2.06%100%
Continental ExpressCAEEWR264.66%0.11%1.5%100%
UnitedSEAANC269.5%2.03%0.22%8.02%
SouthwestMCOBHM2625.74%1.97%0.35%100%
ContinentalCMHEWR262.07%0.5%1.5%38.24%
NorthwestHNLPDX269.74%0.08%1.04%100%
DeltaATLSRQ269.32%5.17%0.06%100%
AmericanDFWOGG2510.03%5.16%0.03%100%
NorthwestORDMEM259.74%4.12%0.65%100%
ContinentalPNSIAH252.07%0.06%1.92%22.94%
American EagleXNALAX254.6%0.09%3.21%100%
ComairLITCVG251.28%0.25%0.96%100%
SouthwestSLCABQ2525.74%0.8%0.8%100%
SouthwestMCOSDF2525.74%1.97%0.29%41.67%
ComairCVGMSP251.28%0.95%2.83%62.5%
JetblueMSYJFK251.4%0.95%1.07%100%
UnitedORDOMA259.5%4.12%0.27%37.31%
DeltaSMFATL259.32%1.04%5.18%100%
ComairBHMLGA251.28%0.35%2.21%100%
ATAINDLGA250.88%0.65%2.21%64.1%
American EagleSDFORD254.6%0.29%4.12%100%
NorthwestMSPFSD259.74%2.83%0.01%100%
AmericanRSWORD2510.03%0.34%4.12%35.71%
DeltaATLSMF259.32%5.17%1.04%100%
ComairCVGLIT251.28%0.95%0.25%100%
NorthwestDTWBNA259.74%2.36%1.24%15.43%
Continental ExpressBTVCLE254.66%0.09%1.49%100%
USAirPHLCHS2510.93%2.23%0.14%100%
DeltaSANSLC259.32%1.47%0.79%100%
DeltaPDXATL259.32%1.04%5.18%100%
AmericanBOSFLL2510.03%1.68%1.05%14.2%
JetblueJFKMSY251.4%1.07%0.94%100%
AmericanORDIAH2510.03%4.12%1.92%14.71%
ATAMIAMDW250.88%0.69%1.92%100%
American EagleBTVBOS254.6%0.09%1.68%86.21%
AmericanORDRSW2510.03%4.12%0.34%35.71%
AmericanFLLBOS2510.03%1.05%1.68%14.97%
ATASRQIND250.88%0.06%0.65%100%
AmericanOGGDFW2510.03%0.03%5.16%100%
ContinentalBUFEWR252.07%0.36%1.5%35.21%
NorthwestCMHDTW259.74%0.5%2.37%100%
DeltaCVGBOS259.32%0.95%1.68%83.33%
SouthwestJAXIND2525.74%0.46%0.65%100%
NorthwestPDXHNL259.74%1.04%0.08%100%
UnitedIADMSY259.5%1.14%0.94%100%
American EagleLAXXNA254.6%3.21%0.09%100%
AmericanSJCSEA2510.03%1.11%2.03%6.48%
Continental ExpressJAXEWR254.66%0.46%1.5%45.45%
ComairATLROC251.28%5.17%0.21%100%
ContinentalEWRBUF252.07%1.49%0.36%39.68%
NorthwestFSDMSP259.74%0.01%2.83%100%
SouthwestLASSTL2525.74%3.22%1.19%59.52%
American EagleORDSDF254.6%4.12%0.29%100%
UnitedOMAORD249.5%0.27%4.12%36.36%
AmericanSTLBOS2410.03%1.19%1.68%100%
UnitedANCDEN249.5%0.22%2.09%100%
DeltaCVGCMH249.32%0.95%0.5%68.57%
ComairCVGHSV241.28%0.95%0.18%100%
DeltaRDUMCO249.32%0.71%1.97%26.97%
USAirCMHDCA2410.93%0.5%1.94%64.86%
ComairGSPCVG241.28%0.07%0.96%100%
USAirPITMIA2410.93%1.31%0.69%82.76%
AmericanSANSTL2410.03%1.47%1.19%100%
NorthwestSFOHNL249.74%1.31%0.08%52.17%
NorthwestMKELAX249.74%0.33%3.21%100%
SouthwestSATRDU2425.74%0.54%0.71%100%
JetblueSLCJFK241.4%0.8%1.07%61.54%
ComairMSPCVG241.28%2.83%0.96%44.44%
USAirBWISFO2410.93%2.09%1.32%32.43%
ComairLGACAE241.28%2.21%0.11%100%
ComairLGAGSO241.28%2.21%0.14%42.11%
AmericanDFWBHM2410.03%5.16%0.35%100%
SouthwestSANSAT2425.74%1.47%0.54%100%
AmericanBHMDFW2410.03%0.35%5.16%100%
DeltaCMHATL249.32%0.5%5.18%100%
ComairHSVCVG241.28%0.18%0.96%100%
American EagleDAYDFW244.6%0.12%5.16%57.14%
DeltaPBILGA249.32%0.4%2.21%31.58%
SouthwestSATHRL2425.74%0.54%0.05%100%
American EagleDFWDAY244.6%5.16%0.12%57.14%
America WestLASRNO242.83%3.22%0.58%6.09%
JetblueLGBSLC241.4%0.19%0.79%100%
Continental ExpressIAHDAY244.66%1.92%0.12%100%
ComairCVGDAY241.28%0.95%0.12%100%
Continental ExpressIADIAH244.66%1.14%1.92%63.16%
DeltaMCORDU249.32%1.97%0.71%27.91%
ATAMDWMIA240.88%1.92%0.69%100%
SouthwestPHXDTW2425.74%3.62%2.37%12.37%
AmericanDFWICT2410.03%5.16%0.05%25.26%
AmericanSJCDEN2410.03%1.11%2.09%21.24%
ATAMCOMDW240.88%1.97%1.92%14.81%
UnitedSFOMSY249.5%1.31%0.94%100%
ComairCVGGSO241.28%0.95%0.14%68.57%
AmericanICTDFW2410.03%0.05%5.16%25%
SouthwestPBIBNA2425.74%0.4%1.24%100%
UnitedORDBUF249.5%4.12%0.36%16.9%
America WestPHXMSY242.83%3.62%0.94%24.24%
ComairPITCVG241.28%1.31%0.96%100%
ComairINDCVG231.28%0.65%0.96%60.53%
USAirLGAORF2310.93%2.21%0.26%100%
NorthwestLAXLAS239.74%3.21%3.22%2.21%
USAirCLTROA2310.93%2.06%0.05%100%
DeltaCVGFLL239.32%0.95%1.05%85.19%
AmericanDENSJC2310.03%2.08%1.11%28.75%
ContinentalIAHPNS232.07%1.92%0.06%21.5%
NorthwestDTWSRQ239.74%2.36%0.06%100%
USAirRSWPIT2310.93%0.34%1.32%100%
Continental ExpressXNAIAH234.66%0.09%1.92%100%
DeltaEWRTPA239.32%1.49%1.41%46.94%
ContinentalIAHSLC232.07%1.92%0.79%71.88%
Continental ExpressPITIAH234.66%1.31%1.92%13.77%
Continental ExpressIAHXNA234.66%1.92%0.09%100%
DeltaJAXCVG239.32%0.46%0.96%54.76%
Continental ExpressEWRJAX234.66%1.49%0.46%46.94%
UnitedATLIAD239.5%5.17%1.13%16.67%
DeltaATLORF239.32%5.17%0.26%95.83%
NorthwestBNAMSP239.74%1.24%2.83%100%
UnitedBUFORD239.5%0.36%4.12%16.2%
Continental ExpressCLEBDL234.66%1.49%0.63%60.53%
AmericanMIABNA2310.03%0.69%1.24%100%
Continental ExpressEWRMSN234.66%1.49%0.08%100%
AmericanOGGORD2310.03%0.03%4.12%100%
UnitedRNOSFO239.5%0.58%1.32%100%
ContinentalSRQEWR232.07%0.06%1.5%95.83%
UnitedMSPDEN239.5%2.83%2.09%6.05%
UnitedDENANC239.5%2.08%0.22%100%
DeltaCVGJAX239.32%0.95%0.46%60.53%
Continental ExpressIAHLRD234.66%1.92%0.03%100%
Continental ExpressEWRMSP234.66%1.49%2.83%13.61%
Continental ExpressEWRPHL234.66%1.49%2.24%100%
NorthwestMKELAS239.74%0.33%3.22%71.88%
ComairSAVCVG231.28%0.12%0.96%100%
USAirSYRCLT2310.93%0.17%2.06%100%
Atlantic SoutheastAEXDFW234.57%0.02%5.16%100%
ComairDAYCVG231.28%0.12%0.96%100%
DeltaDENCVG239.32%2.08%0.96%100%
NorthwestATLMEM239.74%5.17%0.65%82.14%
ContinentalEWRTPA232.07%1.49%1.41%46.94%
Continental ExpressBDLCLE234.66%0.63%1.49%56.1%
ComairLEXCVG231.28%0.09%0.96%67.65%
ComairCVGTUL231.28%0.95%0.29%100%
NorthwestGRBMSP239.74%0.01%2.83%100%
NorthwestOGGSEA239.74%0.03%2.03%100%
DeltaSEAANC239.32%2.03%0.22%7.1%
SouthwestLITBWI2325.74%0.25%2.08%100%
SouthwestPHLLAX2325.74%2.23%3.21%14.37%
ComairCVGIND231.28%0.95%0.65%82.14%
JetblueLGBBOS231.4%0.19%1.68%100%
USAirSJUCLT2310.93%0.19%2.06%100%
ComairTULCVG231.28%0.29%0.96%100%
DeltaCVGJFK239.32%0.95%1.07%71.88%
ContinentalEWRSRQ232.07%1.49%0.06%95.83%
ComairCAECVG231.28%0.11%0.96%100%
SouthwestLASLIT2325.74%3.22%0.25%100%
Continental ExpressLRDIAH234.66%0.03%1.92%100%
USAirCAECLT2310.93%0.11%2.06%100%
UnitedANCSEA229.5%0.22%2.03%6.88%
USAirORFLGA2210.93%0.26%2.21%100%
ComairSDFCVG221.28%0.29%0.96%45.83%
AmericanSEASJC2210.03%2.03%1.11%5.98%
USAirDAYCLT2210.93%0.12%2.06%100%
NorthwestSEAKOA229.74%2.03%0.01%100%
DeltaTPAEWR229.32%1.42%1.5%48.89%
NorthwestMEMDFW229.74%0.65%5.16%56.41%
Continental ExpressLEXIAH224.66%0.09%1.92%100%
ComairLANCVG221.28%0.01%0.96%100%
ATALAXMDW220.88%3.21%1.92%16.79%
NorthwestMEMATL229.74%0.65%5.18%30.56%
USAirCLTCAE2210.93%2.06%0.11%100%
ComairCVGDSM221.28%0.95%0.07%100%
AmericanDFWXNA2210.03%5.16%0.09%12.5%
USAirPITDAY2210.93%1.31%0.12%100%
ComairCAELGA221.28%0.11%2.21%100%
American EagleJFKPVD224.6%1.07%0.68%100%
Continental ExpressMSYCLE224.66%0.95%1.49%73.33%
ComairDSMCVG221.28%0.07%0.96%100%
USAirLAXPHL2210.93%3.21%2.24%15.28%
ComairLGAJAX221.28%2.21%0.46%70.97%
Continental ExpressCLEMSY224.66%1.49%0.94%81.48%
ComairCVGLAN221.28%0.95%0.01%100%
NorthwestLAXMKE229.74%3.21%0.33%100%
AmericanXNADFW2210.03%0.09%5.16%12.87%
USAirLGAFLL2210.93%2.21%1.05%14.29%
SouthwestLASMAF2225.74%3.22%0.12%100%
USAirDTWPIT2210.93%2.36%1.32%100%
American EagleDFWHOU224.6%5.16%0.99%30.99%
America WestDTWPHX222.83%2.36%3.62%10.38%
Continental ExpressEWRMEM224.66%1.49%0.65%64.71%
USAirPITCMH2210.93%1.31%0.5%100%
NorthwestKOAOGG229.74%0.01%0.03%100%
ComairBNACVG221.28%1.24%0.96%66.67%
NorthwestMSPRAP229.74%2.83%0.01%100%
AmericanBNAMIA2210.03%1.24%0.69%100%
ComairCVGCLT221.28%0.95%2.06%100%
Continental ExpressMCIEWR224.66%1.18%1.5%56.41%
AmericanMCILGA2210.03%1.18%2.21%100%
ATALGAIND220.88%2.21%0.65%57.89%
ContinentalIAHCOS222.07%1.92%0.12%32.84%
ComairRICCVG221.28%0.27%0.96%61.11%
USAirABEPIT2210.93%0.15%1.32%100%
Continental ExpressAGSEWR224.66%0.21%1.5%100%
ContinentalSLCIAH222.07%0.8%1.92%70.97%
ContinentalCOSIAH222.07%0.12%1.92%32.84%
USAirLAXBWI2210.93%3.21%2.08%16.92%
ATAPIEIND220.88%0.02%0.65%100%
American EagleHOUDFW224.6%0.99%5.16%30.99%
Atlantic SoutheastGTRATL224.57%0.01%5.18%100%
AmericanORDOGG2210.03%4.12%0.03%100%
DeltaPBIBOS229.32%0.4%1.68%51.16%
American EaglePVDJFK224.6%0.69%1.07%100%
NorthwestLAXIND229.74%3.21%0.65%25.88%
ATAMDWLAX220.88%1.92%3.21%18.03%
DeltaATLSDF229.32%5.17%0.29%100%
NorthwestRAPMSP229.74%0.01%2.83%100%
AmericanDFWHSV2110.03%5.16%0.18%100%
DeltaSEADFW219.32%2.03%5.16%8.24%
AmericanSTLSAN2110.03%1.19%1.47%100%
SouthwestABQMAF2125.74%0.8%0.12%100%
NorthwestMCIDTW219.74%1.18%2.37%100%
ContinentalCLEDCA212.07%1.49%1.94%19.81%
Continental ExpressEFDIAH214.66%0.01%1.92%100%
ContinentalSMFIAH212.07%1.04%1.92%100%
AmericanMIADEN2110.03%0.69%2.09%14.69%
AmericanPBIBOS2110.03%0.4%1.68%48.84%
DeltaATLOMA219.32%5.17%0.27%100%
JetblueFLLLGA211.4%1.05%2.21%14.79%
ComairROCATL211.28%0.21%5.18%100%
ATAINDSRQ210.88%0.65%0.06%100%
Continental ExpressEWRAVL214.66%1.49%0.21%100%
JetblueTPABOS211.4%1.42%1.68%24.42%
USAirAVPPIT2110.93%0.02%1.32%100%
Continental ExpressRDUIAH214.66%0.71%1.92%35.59%
UnitedSTTIAD219.5%0.02%1.13%100%
JetblueLGAFLL211.4%2.21%1.05%13.64%
DeltaCVGAUS219.32%0.95%0.61%95.45%
SouthwestRDUSAT2125.74%0.71%0.54%100%
ContinentalTPAEWR212.07%1.42%1.5%46.67%
ATAMDWMCO210.88%1.92%1.97%12.28%
Continental ExpressDABEWR214.66%0.01%1.5%84%
DeltaOMAATL219.32%0.27%5.18%100%
ComairCVGEVV211.28%0.95%0.01%60%
SouthwestLAXPHL2125.74%3.21%2.24%14.58%
ComairFNTCVG211.28%0.02%0.96%100%
ComairCVGTYS211.28%0.95%0.13%100%
Continental ExpressEWRMCI214.66%1.49%1.18%77.78%
Continental ExpressIAHRDU214.66%1.92%0.71%35.59%
DeltaATLDCA219.32%5.17%1.94%17.65%
ComairCVGSDF211.28%0.95%0.29%60%
ContinentalSATEWR212.07%0.54%1.5%100%
NorthwestDTWANC219.74%2.36%0.22%100%
AmericanHSVDFW2110.03%0.18%5.16%100%
ContinentalIAHSMF212.07%1.92%1.04%100%
DeltaDCAATL219.32%1.94%5.18%18.58%
America WestLASONT212.83%3.22%0.77%6.1%
SouthwestPHLPBI2125.74%2.23%0.4%26.25%
DeltaDFWFLL219.32%5.16%1.05%15.56%
NorthwestSRQDTW219.74%0.06%2.37%100%
USAirALBCLT2110.93%0.32%2.06%100%
SouthwestHRLSAT2125.74%0.05%0.54%100%
Atlantic SoutheastATLMEI214.57%5.17%0.01%100%
Continental ExpressIAHEFD214.66%1.92%0.01%100%
SouthwestPHLTPA2125.74%2.23%1.41%17.65%
DeltaATLANC209.32%5.17%0.22%100%
JetblueBOSLGB201.4%1.68%0.19%100%
NorthwestINDLAX209.74%0.65%3.21%23.81%
American EagleJANDFW204.6%0.1%5.16%90.91%
AmericanORDPBI2010.03%4.12%0.4%40.82%
AmericanSDFDFW2010.03%0.29%5.16%54.05%
ComairCVGMCI201.28%0.95%1.18%33.9%
Atlantic SoutheastATLGTR204.57%5.17%0.01%100%
NorthwestLASMEM209.74%3.22%0.65%100%
ComairMCICVG201.28%1.18%0.96%37.04%
American EagleDFWJAN204.6%5.16%0.1%95.24%
American EagleBUFJFK204.6%0.36%1.07%14.29%
JetblueLGBFLL201.4%0.19%1.05%100%
AmericanSTLSEA2010.03%1.19%2.03%100%
AlaskaPSPSFO202.45%0.07%1.32%100%
ContinentalTUSIAH202.07%0.31%1.92%51.28%
ContinentalIAHTUS202.07%1.92%0.31%52.63%
UnitedORDBTV209.5%4.12%0.09%100%
JetblueSEAJFK201.4%2.03%1.07%43.48%
NorthwestMSPGRB209.74%2.83%0.01%100%
Continental ExpressGSPCLE204.66%0.07%1.49%100%
UnitedLGAIAD209.5%2.21%1.13%100%
American EagleJFKBUF204.6%1.07%0.36%14.18%
DeltaBOSPBI209.32%1.68%0.4%52.63%
SouthwestSATSAN2025.74%0.54%1.47%100%
ComairBHMCVG201.28%0.35%0.96%43.48%
UnitedSFOMIA209.5%1.31%0.69%21.05%
ComairATLHSV201.28%5.17%0.18%3.95%
Atlantic SoutheastDFWXNA204.57%5.16%0.09%11.36%
DeltaBWICVG209.32%2.09%0.96%57.14%
ATAINDMCO200.88%0.65%1.97%15.5%
Continental ExpressEWRDAB204.66%1.49%0.01%83.33%
American EagleBOSALB204.6%1.68%0.32%100%
AmericanDFWSDF2010.03%5.16%0.29%54.05%
NorthwestDTWCLE209.74%2.36%1.49%16.53%
AmericanPBIORD2010.03%0.4%4.12%40.82%
SouthwestABQLBB2025.74%0.8%0.12%100%
JetblueBOSTPA201.4%1.68%1.41%23.53%
Continental ExpressAVLEWR204.66%0.21%1.5%100%
JetblueFLLLGB201.4%1.05%0.19%100%
UnitedBTVORD209.5%0.09%4.12%100%
AmericanSEASTL2010.03%2.03%1.19%100%
Atlantic SoutheastXNADFW204.57%0.09%5.16%11.7%
DeltaCVGBWI209.32%0.95%2.08%58.82%
UnitedMCOMIA209.5%1.97%0.69%57.14%
USAirPITLAX1910.93%1.31%3.21%100%
AmericanRNOLAX1910.03%0.58%3.21%13.57%
DeltaMCOSYR199.32%1.97%0.17%100%
AmericanLGAMCI1910.03%2.21%1.18%100%
ATAINDPIE190.88%0.65%0.02%100%
DeltaATLIAH199.32%5.17%1.92%16.38%
NorthwestRNODTW199.74%0.58%2.37%100%
Continental ExpressBHMCLE194.66%0.35%1.49%100%
ContinentalMDWEWR192.07%1.92%1.5%15.83%
ComairAZOCVG191.28%0.01%0.96%100%
AmericanMSYLGA1910.03%0.95%2.21%26.76%
USAirGSPCLT1910.93%0.07%2.06%100%
JetblueJFKSEA191.4%1.07%2.03%44.19%
ComairCVGAZO191.28%0.95%0.01%100%
ComairJAXCVG191.28%0.46%0.96%45.24%
DeltaCVGPBI199.32%0.95%0.4%100%
USAirCLTGSP1910.93%2.06%0.07%100%
ComairSBNCVG191.28%0.01%0.96%100%
NorthwestDTWRNO199.74%2.36%0.58%100%
ATAMDWSRQ190.88%1.92%0.06%100%
SouthwestSDFMCO1925.74%0.29%1.97%35.19%
SouthwestJAXMSY1925.74%0.46%0.94%100%
UnitedIADLGA199.5%1.14%2.21%100%
American EagleCLEJFK194.6%1.49%1.07%21.84%
Continental ExpressHPNEWR194.66%0.09%1.5%100%
ComairCVGLEX191.28%0.95%0.09%61.29%
AmericanLAXRNO1910.03%3.21%0.58%14.29%
American EagleALBBOS194.6%0.32%1.68%100%
ContinentalIAHSFO192.07%1.92%1.32%30.65%
ContinentalCLEORD192.07%1.49%4.12%7.42%
ContinentalSFOIAH192.07%1.31%1.92%32.76%
American EagleJFKCLE194.6%1.07%1.49%21.59%
AlaskaSFOPSP192.45%1.31%0.07%100%
Atlantic SoutheastATLPNS194.57%5.17%0.06%90.48%
ComairCVGATW191.28%0.95%0.01%100%
ComairCVGSBN191.28%0.95%0.01%100%
DeltaIAHATL199.32%1.92%5.18%17.76%
DeltaSYRMCO199.32%0.17%1.97%90.48%
Continental ExpressTUSIAH194.66%0.31%1.92%48.72%
Continental ExpressIAHPIT194.66%1.92%1.32%12.93%
ATALASIND180.88%3.22%0.65%20.22%
USAirMHTDCA1810.93%0.47%1.94%100%
DeltaATLOKC189.32%5.17%0.26%100%
AlaskaPDXPSP182.45%1.04%0.07%100%
American EagleDAYORD184.6%0.12%4.12%60%
ContinentalRSWIAH182.07%0.34%1.92%81.82%
Continental ExpressMFEIAH184.66%0.04%1.92%20.69%
AmericanDAYDFW1810.03%0.12%5.16%42.86%
DeltaJFKCVG189.32%1.07%0.96%58.06%
DeltaOKCATL189.32%0.26%5.18%100%
Continental ExpressIAHMFE184.66%1.92%0.04%20.69%
ContinentalELPIAH182.07%0.42%1.92%31.03%
ComairGRBCVG181.28%0.01%0.96%100%
NorthwestLANDTW189.74%0.01%2.37%100%
ComairLGASAV181.28%2.21%0.12%100%
ComairCVGGRB181.28%0.95%0.01%100%
Continental ExpressEWRGRR184.66%1.49%0.15%100%
USAirPITABE1810.93%1.31%0.15%100%
AmericanMIATPA1810.03%0.69%1.41%100%
Continental ExpressAGSIAH184.66%0.21%1.92%100%
ComairACYCVG181.28%0.01%0.96%100%
ContinentalIAHELP182.07%1.92%0.42%31.03%
ComairATWCVG181.28%0.01%0.96%100%
AmericanSFOSTL1810.03%1.31%1.19%100%
DeltaFLLCVG189.32%1.05%0.96%69.23%
AmericanLGAMSY1810.03%2.21%0.94%29.51%
SouthwestLASMHT1825.74%3.22%0.47%100%
ContinentalIAHRSW182.07%1.92%0.34%81.82%
American EagleLGAMHT184.6%2.21%0.47%94.74%
AmericanLAXOGG1810.03%3.21%0.03%94.74%
Atlantic SoutheastMEIATL184.57%0.01%5.18%100%
AmericanDFWDAY1810.03%5.16%0.12%42.86%
AmericanOGGLAX1810.03%0.03%3.21%75%
America WestIAHLAS182.83%1.92%3.22%100%
ContinentalBDLCLE182.07%0.63%1.49%43.9%
SouthwestSTLFLL1825.74%1.19%1.05%58.06%
Continental ExpressCLEBHM184.66%1.49%0.35%100%
Continental ExpressCLEBTV184.66%1.49%0.09%100%
ContinentalEWRDFW182.07%1.49%5.16%9.73%
SouthwestFLLSTL1825.74%1.05%1.19%60%
Continental ExpressCLEAUS184.66%1.49%0.61%100%
ComairCVGACY181.28%0.95%0.01%100%
ComairCVGRIC181.28%0.95%0.27%64.29%
NorthwestDTWLAN189.74%2.36%0.01%100%
Continental ExpressIAHRIC184.66%1.92%0.27%100%
Atlantic SoutheastMEILFT184.57%0.01%0.05%100%
American EagleSBADFW184.6%0.01%5.16%100%
AmericanBOSPBI1810.03%1.68%0.4%47.37%
DeltaCVGSAT189.32%0.95%0.54%72%
Continental ExpressGRRIAH184.66%0.15%1.92%100%
AmericanMIAIAH1810.03%0.69%1.92%18.18%
ComairCVGCAE181.28%0.95%0.11%100%
USAirFLLLGA1810.93%1.05%2.21%12.68%
Continental ExpressIAHCAE184.66%1.92%0.11%100%
Continental ExpressIAHGSO184.66%1.92%0.14%100%
Continental ExpressIAHTUS184.66%1.92%0.31%47.37%
ATAINDLAS180.88%0.65%3.22%20.45%
Continental ExpressMSNEWR184.66%0.08%1.5%100%
American EagleDFWSBA174.6%5.16%0.01%100%
American EagleMHTLGA174.6%0.47%2.21%80.95%
Atlantic SoutheastAEXGTR174.57%0.02%0.01%100%
USAirDCADTW1710.93%1.94%2.37%5.43%
DeltaEWRPBI179.32%1.49%0.4%60.71%
SouthwestSTLLAX1725.74%1.19%3.21%25.76%
UnitedDSMORD179.5%0.07%4.12%19.32%
ComairRDUCVG171.28%0.71%0.96%60.71%
American EagleROCBOS174.6%0.21%1.68%68%
ComairJAXLGA171.28%0.46%2.21%62.96%
American EagleBOSROC174.6%1.68%0.21%77.27%
Continental ExpressGSOIAH174.66%0.14%1.92%94.44%
Continental ExpressORFIAH174.66%0.26%1.92%80.95%
AmericanSTLDCA1710.03%1.19%1.94%100%
NorthwestLASMKE179.74%3.22%0.33%58.62%
DeltaCVGSFO179.32%0.95%1.32%100%
ComairMLICVG171.28%0%0.96%100%
UnitedMSYIAD179.5%0.95%1.13%100%
ComairTYSCVG171.28%0.14%0.96%100%
ContinentalMCIEWR172.07%1.18%1.5%43.59%
USAirDTWDCA1710.93%2.36%1.94%7.11%
SouthwestMDWPIT1725.74%1.92%1.32%32.69%
ContinentalOMAIAH172.07%0.27%1.92%26.56%
Continental ExpressORDIAH174.66%4.12%1.92%10%
ATAMCOIND170.88%1.97%0.65%12.69%
American EagleSDFDFW174.6%0.29%5.16%45.95%
DeltaJFKLAX179.32%1.07%3.21%3.47%
NorthwestMSPJAC179.74%2.83%0.02%100%
AmericanSTLSFO1710.03%1.19%1.32%100%
American EagleORDICT174.6%4.12%0.05%100%
DeltaMCOLAX179.32%1.97%3.21%13.82%
DeltaPBIEWR179.32%0.4%1.5%62.96%
American EagleDFWSDF174.6%5.16%0.29%45.95%
ContinentalIAHOMA172.07%1.92%0.27%25.76%
SouthwestPHXPHL1725.74%3.62%2.24%15.89%
AlaskaSEAPDX172.45%2.03%1.04%100%
DeltaSATCVG179.32%0.54%0.96%68%
ComairCVGCAK171.28%0.95%0.01%70.83%
ContinentalEWRMDW172.07%1.49%1.92%14.53%
AmericanMIASTL1710.03%0.69%1.19%100%
ComairCIDCVG171.28%0.01%0.96%100%
ComairCVGMLI171.28%0.95%0%100%
SouthwestLAXSTL1725.74%3.21%1.19%32.08%
ComairLGABHM171.28%2.21%0.35%100%
JetblueSLCLGB171.4%0.8%0.19%100%
ComairLGACHS171.28%2.21%0.14%100%
Atlantic SoutheastPNSATL174.57%0.06%5.18%89.47%
NorthwestJACMSP179.74%0.02%2.83%100%
ComairGSOLGA171.28%0.14%2.21%27.87%
American EagleORDDAY174.6%4.12%0.12%58.62%
ComairCVGMEM161.28%0.95%0.65%94.12%
ComairORDCVG161.28%4.12%0.96%12.03%
America WestDSMPHX162.83%0.07%3.62%100%
DeltaATLLIT169.32%5.17%0.25%100%
Continental ExpressAUSCLE164.66%0.61%1.49%100%
Continental ExpressIAHVPS164.66%1.92%0.12%100%
JetblueJFKSLC161.4%1.07%0.79%50%
UnitedONTSFO169.5%0.77%1.32%100%
SouthwestBUFTPA1625.74%0.36%1.41%100%
ComairMCOCVG161.28%1.97%0.96%26.23%
America WestPHXDSM162.83%3.62%0.07%100%
UnitedJFKSEA169.5%1.07%2.03%37.21%
UnitedATLLAX169.5%5.17%3.21%10.39%
ComairTRICVG161.28%0.16%0.96%51.61%
JetblueJFKSJC161.4%1.07%1.11%55.17%
DeltaLITATL169.32%0.25%5.18%100%
Continental ExpressDSMIAH164.66%0.07%1.92%100%
AmericanHOULAX1610.03%0.99%3.21%20.78%
AmericanMIAEWR1610.03%0.69%1.5%23.53%
Continental ExpressIAHDSM164.66%1.92%0.07%100%
JetblueSJCJFK161.4%1.11%1.07%55.17%
USAirTPALGA1610.93%1.42%2.21%17.58%
DeltaDFWLAX169.32%5.16%3.21%4.53%
ComairJAXJFK161.28%0.46%1.07%100%
American EagleCIDORD164.6%0.01%4.12%100%
NorthwestHNLOGG169.74%0.08%0.03%72.73%
ContinentalORDCLE162.07%4.12%1.49%6.78%
American EagleICTORD164.6%0.05%4.12%100%
American EagleORDCID164.6%4.12%0.01%100%
NorthwestDTWMCI169.74%2.36%1.18%100%
DeltaSJCATL169.32%1.11%5.18%100%
America WestORDPHX162.83%4.12%3.62%4.37%
Continental ExpressVPSIAH164.66%0.11%1.92%100%
DeltaJFKSLC169.32%1.07%0.79%50%
Continental ExpressXNAEWR164.66%0.09%1.5%100%
DeltaRSWEWR169.32%0.34%1.5%34.78%
ComairSTLCVG161.28%1.19%0.96%59.26%
USAirLGATPA1610.93%2.21%1.41%17.39%
NorthwestLASIND169.74%3.22%0.65%17.98%
JetblueBURJFK161.4%0.56%1.07%100%
ComairCAKCVG161.28%0.01%0.96%69.57%
ComairCVGCID161.28%0.95%0.01%100%
ComairCVGSAV161.28%0.95%0.12%100%
USAirPHLAVP1610.93%2.23%0.01%100%
SouthwestHOUPHL1625.74%0.99%2.24%100%
JetblueJFKBUR161.4%1.07%0.57%100%
SouthwestRDULAS1625.74%0.71%3.22%100%
UnitedSLCDEN169.5%0.8%2.09%21.33%
ATASRQMDW160.88%0.06%1.92%100%
Continental ExpressEWRXNA164.66%1.49%0.09%100%
USAirPBIPIT1610.93%0.4%1.32%100%
DeltaCVGDFW169.32%0.95%5.16%84.21%
Atlantic SoutheastLFTMEI164.57%0.05%0.01%100%
AmericanMIAMCO1610.03%0.69%1.97%43.24%
ComairRDUJFK161.28%0.71%1.07%26.67%
ComairMEMCVG161.28%0.65%0.96%100%
ComairCVGCLE151.28%0.95%1.49%12.82%
UnitedSEAJFK159.5%2.03%1.07%32.61%
UnitedORDCVG159.5%4.12%0.96%11.28%
SouthwestPHLPHX1525.74%2.23%3.62%12.2%
Continental ExpressRICIAH154.66%0.27%1.92%100%
ComairBWICVG151.28%2.09%0.96%42.86%
AlaskaLAXGEG152.45%3.21%0.27%100%
ComairCVGORF151.28%0.95%0.26%78.95%
Continental ExpressEWRACK154.66%1.49%0%100%
Continental ExpressEWRHPN154.66%1.49%0.09%100%
DeltaCVGSTL159.32%0.95%1.19%51.72%
Continental ExpressIAHORF154.66%1.92%0.26%78.95%
ComairSGFCVG151.28%0.05%0.96%100%
NorthwestBNADTW159.74%1.24%2.37%9.49%
ComairCVGSGF151.28%0.95%0.05%100%
AmericanLAXHOU1510.03%3.21%0.99%17.65%
USAirPITAVP1510.93%1.31%0.01%100%
DeltaSLCJFK159.32%0.8%1.07%38.46%
AmericanMIACLT1510.03%0.69%2.06%15.31%
ComairRDUMCO151.28%0.71%1.97%16.85%
ContinentalDCACLE152.07%1.94%1.49%15.79%
Continental ExpressIAHORD154.66%1.92%4.12%9.49%
Continental ExpressOMAEWR154.66%0.27%1.5%100%
ContinentalBHMIAH152.07%0.35%1.92%13.89%
ComairMDTATL151.28%0.17%5.18%9.62%
DeltaINDCVG159.32%0.65%0.96%39.47%
Atlantic SoutheastTRICVG154.57%0.16%0.96%48.39%
America WestPHXORD152.83%3.62%4.12%4.03%
SouthwestPITMDW1525.74%1.31%1.92%30%
ComairCHSLGA151.28%0.14%2.21%100%
ContinentalEWRMSP152.07%1.49%2.83%8.88%
USAirMIAPIT1510.93%0.69%1.32%78.95%
USAirCLEDCA1510.93%1.49%1.94%14.15%
DeltaCVGMSP159.32%0.95%2.83%37.5%
ComairMSNCVG151.28%0.08%0.96%100%
ContinentalCLEBDL152.07%1.49%0.63%39.47%
ComairCVGOMA151.28%0.95%0.27%100%
USAirDCACLE1510.93%1.94%1.49%15.79%
Atlantic SoutheastGTRAEX154.57%0.01%0.02%100%
ATAINDMDW150.88%0.65%1.92%9.09%
UnitedMIAMCO159.5%0.69%1.97%40.54%
American EagleORDPWM154.6%4.12%0.09%100%
AmericanSTLMIA1510.03%1.19%0.69%100%
JetblueDENBOS151.4%2.08%1.68%9.2%
UnitedCVGORD159.5%0.95%4.12%10.2%
UnitedDENCMH159.5%2.08%0.5%100%
American EaglePWMORD154.6%0.1%4.12%100%
USAirROACLT1510.93%0.05%2.06%100%
USAirBTVPIT1510.93%0.09%1.32%100%
DeltaEWRRSW159.32%1.49%0.34%34.09%
Continental ExpressACKEWR154.66%0%1.5%100%
UnitedSFOSLC159.5%1.31%0.79%71.43%
JetblueATLLGB151.4%5.17%0.19%100%
AmericanBWIMIA1510.03%2.09%0.69%100%
UnitedCOSORD159.5%0.12%4.12%53.57%
ATAINDFLL150.88%0.65%1.05%83.33%
USAirPHLIAD1510.93%2.23%1.13%78.95%
ContinentalIAHBHM152.07%1.92%0.35%14.85%
AmericanTPAMIA1510.03%1.42%0.69%100%
American EagleORDIND154.6%4.12%0.65%13.89%
AmericanLAXPHX1510.03%3.21%3.62%1.83%
Continental ExpressIAHPSP154.66%1.92%0.07%100%
American EagleINDORD154.6%0.65%4.12%13.04%
Continental ExpressPSPIAH154.66%0.07%1.92%100%
USAirROAPIT1510.93%0.05%1.32%100%
NorthwestSANMEM159.74%1.47%0.65%100%
ComairCVGJAX151.28%0.95%0.46%39.47%
ComairCVGTRI151.28%0.95%0.16%53.57%
SouthwestMDWBUF1525.74%1.92%0.36%100%
DeltaAUSCVG159.32%0.61%0.96%93.75%
ComairCVGMSN151.28%0.95%0.08%100%
ContinentalDCAEWR152.07%1.94%1.5%16.3%
UnitedPHXLAX159.5%3.62%3.21%2.04%
DeltaCVGSEA159.32%0.95%2.03%100%
DeltaATLSJC159.32%5.17%1.11%100%
AmericanOAKLAX1510.03%1.47%3.21%1.73%
Continental ExpressIAHGRR154.66%1.92%0.15%100%
NorthwestINDLAS159.74%0.65%3.22%17.05%
AmericanMSYSTL1510.03%0.95%1.19%100%
ComairCVGORD141.28%0.95%4.12%9.52%
SouthwestLASISP1425.74%3.22%0.38%100%
ComairOMACVG141.28%0.27%0.96%100%
UnitedORDDSM149.5%4.12%0.07%16.28%
ContinentalDFWEWR142.07%5.16%1.5%8.05%
Atlantic SoutheastCVGEVV144.57%0.95%0.01%40%
NorthwestDTWMDW149.74%2.36%1.92%6.17%
ComairPHLCVG141.28%2.23%0.96%16.09%
DeltaSLCBOS149.32%0.8%1.68%100%
SouthwestINDJAX1425.74%0.65%0.46%100%
Continental ExpressCMHIAH144.66%0.5%1.92%28%
ComairCVGPHL141.28%0.95%2.24%16.47%
NorthwestMEMSAN149.74%0.65%1.47%100%
America WestPHXDTW142.83%3.62%2.37%7.22%
NorthwestBUFMSP149.74%0.36%2.83%100%
ATAFLLIND140.88%1.05%0.65%82.35%
NorthwestMSPEGE149.74%2.83%0.01%100%
Atlantic SoutheastCVGSDF144.57%0.95%0.29%40%
SouthwestHOUOAK1425.74%0.99%1.47%100%
ContinentalIADIAH142.07%1.14%1.92%36.84%
Atlantic SoutheastLYHATL144.57%0%5.18%100%
SouthwestMAFHOU1425.74%0.12%0.99%100%
DeltaRICCVG149.32%0.27%0.96%38.89%
ContinentalIAHIAD142.07%1.92%1.13%35%
America WestRNOLAS142.83%0.58%3.22%3.28%
Continental ExpressIAHCMH144.66%1.92%0.5%29.79%
ComairCVGSTL141.28%0.95%1.19%48.28%
UnitedLAXATL149.5%3.21%5.18%8.48%
Continental ExpressTULEWR144.66%0.29%1.5%100%
NorthwestANCDTW149.74%0.22%2.37%100%
ComairCVGSYR141.28%0.95%0.17%100%
AmericanSEAMIA1410.03%2.03%0.69%100%
SouthwestCLEPHX1425.74%1.49%3.62%60.87%
NorthwestEGEMSP149.74%0.01%2.83%100%
SouthwestMCOPBI1425.74%1.97%0.4%93.33%
UnitedCLEDEN149.5%1.49%2.09%22.58%
AmericanMCOMIA1410.03%1.97%0.69%40%
Atlantic SoutheastDFWTXK144.57%5.16%0.06%6.76%
Continental ExpressABQIAH144.66%0.8%1.92%10.85%
ComairCVGROA141.28%0.95%0.05%100%
ComairOKCCVG141.28%0.26%0.96%100%
NorthwestBOSMKE149.74%1.68%0.33%100%
AmericanORDOKC1410.03%4.12%0.26%15.22%
NorthwestMSPBUF149.74%2.83%0.36%100%
Atlantic SoutheastCVGCHA144.57%0.95%0.2%51.85%
NorthwestDFWMEM149.74%5.16%0.65%19.18%
AmericanMIAPHL1410.03%0.69%2.24%25.93%
ComairCVGBWI141.28%0.95%2.08%41.18%
ComairCVGSCE141.28%0.95%0%100%
USAirCLEPHL1410.93%1.49%2.24%11.67%
DeltaCVGGRR149.32%0.95%0.15%29.79%
UnitedGRRORD149.5%0.15%4.12%31.11%
UnitedORDGRR149.5%4.12%0.15%31.11%
SouthwestPITMCO1425.74%1.31%1.97%20.9%
Atlantic SoutheastEVVCVG144.57%0.01%0.96%50%
ComairEVVCVG141.28%0.01%0.96%50%
ComairCHACVG141.28%0.2%0.96%53.85%
UnitedIADMDW149.5%1.14%1.92%100%
Continental ExpressIAHABQ144.66%1.92%0.8%10.94%
Atlantic SoutheastSDFCVG144.57%0.29%0.96%29.17%
AmericanCLTMIA1410.03%2.06%0.69%16.09%
NorthwestDTWCMH149.74%2.36%0.5%100%
UnitedIADBDL149.5%1.14%0.63%100%
DeltaGRRCVG149.32%0.15%0.96%30.43%
ComairSYRCVG141.28%0.17%0.96%82.35%
AmericanMEMDFW1410.03%0.65%5.16%35.9%
ComairCVGEWR141.28%0.95%1.5%8.14%
USAirGSOPIT1410.93%0.14%1.32%100%
ComairCVGJAN131.28%0.95%0.1%100%
AmericanSTLMSY1310.03%1.19%0.94%100%
UnitedMDTORD139.5%0.17%4.12%56.52%
ComairJFKATL131.28%1.07%5.18%86.67%
ComairORFCVG131.28%0.26%0.96%86.67%
SouthwestLASRDU1325.74%3.22%0.71%100%
ContinentalPBIIAH132.07%0.4%1.92%54.17%
ComairEWRCVG131.28%1.49%0.96%8.23%
USAirMCOLGA1310.93%1.97%2.21%16.05%
ComairSAVLGA131.28%0.12%2.21%100%
AmericanSFOHNL1310.03%1.31%0.08%28.26%
UnitedDENSLC139.5%2.08%0.79%15.48%
ComairCVGCHA131.28%0.95%0.2%48.15%
AmericanDFWMEM1310.03%5.16%0.65%17.81%
UnitedORDMDT139.5%4.12%0.17%61.9%
Atlantic SoutheastDFWICT134.57%5.16%0.05%13.68%
AmericanMIASEA1310.03%0.69%2.03%100%
ContinentalIAHPBI132.07%1.92%0.4%54.17%
AmericanTPASTL1310.03%1.42%1.19%27.08%
DeltaFLLDCA139.32%1.05%1.94%11.5%
JetblueFLLEWR131.4%1.05%1.5%13.68%
American EagleSYRBOS134.6%0.17%1.68%100%
ComairJFKJAX131.28%1.07%0.46%100%
American EagleMDWDFW134.6%1.92%5.16%7.65%
SouthwestBUFMDW1325.74%0.36%1.92%100%
DeltaDCAFLL139.32%1.94%1.05%10.48%
AmericanDCASTL1310.03%1.94%1.19%100%
ComairGSOMCO131.28%0.14%1.97%100%
AmericanSTLTPA1310.03%1.19%1.41%29.55%
ComairCVGOKC131.28%0.95%0.26%100%
SouthwestPBIMCO1325.74%0.4%1.97%92.86%
Atlantic SoutheastCVGTRI134.57%0.95%0.16%46.43%
UnitedSFOBUR139.5%1.31%0.57%100%
ComairJANCVG131.28%0.1%0.96%100%
UnitedORDCOS139.5%4.12%0.12%50%
American EagleORDCOS134.6%4.12%0.12%50%
DeltaMSYDFW139.32%0.95%5.16%7.6%
USAirSFOBWI1310.93%1.31%2.08%32.5%
UnitedDENSAT139.5%2.08%0.54%100%
NorthwestSEAHNL139.74%2.03%0.08%100%
UnitedIADPHL139.5%1.14%2.24%56.52%
ComairSCECVG131.28%0%0.96%100%
Atlantic SoutheastICTDFW134.57%0.05%5.16%13.54%
ComairEVVATL131.28%0.01%5.18%92.86%
DeltaDFWBTR139.32%5.16%0.08%9.49%
Continental ExpressLEXEWR134.66%0.09%1.5%100%
AmericanCLEORD1310.03%1.49%4.12%5.08%
ATAPHXIND130.88%3.62%0.65%11.4%
JetblueBOSDEN131.4%1.68%2.09%8.33%
DeltaLAXHNL139.32%3.21%0.08%14.61%
DeltaBTRMOB139.32%0.08%0.04%100%
AmericanJFKSJC1310.03%1.07%1.11%44.83%
ContinentalMSPEWR132.07%2.83%1.5%7.07%
AmericanPHXSJC1310.03%3.62%1.11%4.14%
SouthwestJAXISP1325.74%0.46%0.38%100%
USAirPHLDAY1310.93%2.23%0.12%100%
American EagleDFWBUF134.6%5.16%0.36%72.22%
UnitedLAXPHX139.5%3.21%3.62%1.59%
ComairJFKCVG131.28%1.07%0.96%41.94%
USAirDCAIND1310.93%1.94%0.65%100%
NorthwestMEMPHL139.74%0.65%2.24%100%
SouthwestBWISJC1325.74%2.09%1.11%100%
SouthwestHOUMCI1325.74%0.99%1.18%100%
ComairCVGSWF131.28%0.95%0%100%
NorthwestMEMLIT139.74%0.65%0.25%100%
NorthwestMCOMKE139.74%1.97%0.33%100%
ATAMDWIND130.88%1.92%0.65%9.35%
American EagleCOSORD134.6%0.12%4.12%46.43%
Atlantic SoutheastATLLYH134.57%5.17%0%100%
ComairSWFCVG131.28%0%0.96%100%
UnitedDENBOI139.5%2.08%0.23%100%
AmericanSJCJFK1310.03%1.11%1.07%44.83%
UnitedSATORD139.5%0.54%4.12%14.94%
ComairATLMDT131.28%5.17%0.17%10.92%
ComairCMHDCA131.28%0.5%1.94%35.14%
Continental ExpressHSVEWR134.66%0.18%1.5%100%
NorthwestLITMEM139.74%0.25%0.65%100%
ComairCVGAVP131.28%0.95%0.01%100%
Continental ExpressEWROMA134.66%1.49%0.27%100%
AmericanSTLFLL1310.03%1.19%1.05%41.94%
ComairCLECVG131.28%1.49%0.96%10%
DeltaCVGRDU139.32%0.95%0.71%28.26%
USAirPITPBI1210.93%1.31%0.4%100%
NorthwestSANLAX129.74%1.47%3.21%80%
Continental ExpressIAHAGS124.66%1.92%0.22%100%
Continental ExpressIAHBOI124.66%1.92%0.23%100%
Atlantic SoutheastCHACVG124.57%0.2%0.96%46.15%
ComairJFKPIT121.28%1.07%1.32%28.57%
ContinentalSDFIAH122.07%0.29%1.92%16.22%
American EagleBUFDFW124.6%0.36%5.16%66.67%
ContinentalPDXIAH122.07%1.04%1.92%100%
ComairBNALGA121.28%1.24%2.21%15.79%
ComairHSVDCA121.28%0.18%1.94%100%
DeltaDFWSEA129.32%5.16%2.03%4.76%
ContinentalIAHDCA122.07%1.92%1.94%15.38%
ComairICTCVG121.28%0.05%0.96%100%
UnitedSATDEN129.5%0.54%2.09%100%
NorthwestDTWSLC129.74%2.36%0.79%100%
SouthwestCLELAS1225.74%1.49%3.22%100%
DeltaDAYATL129.32%0.12%5.18%70.59%
ComairAVPCVG121.28%0.02%0.96%100%
DeltaMCOLAS129.32%1.97%3.22%100%
ComairDCACVG121.28%1.94%0.96%27.91%
AmericanFLLSTL1210.03%1.05%1.19%40%
SouthwestISPJAX1225.74%0.37%0.46%100%
American EagleORHJFK124.6%0%1.07%100%
ContinentalIAHPDX122.07%1.92%1.04%100%
American EagleJFKORH124.6%1.07%0%100%
USAirLGAMCO1210.93%2.21%1.97%14.81%
ComairIAHCVG121.28%1.92%0.96%18.75%
USAirIADBOS1210.93%1.14%1.68%10.26%
USAirSTTCLT1210.93%0.02%2.06%100%
UnitedSLCSFO129.5%0.8%1.32%80%
ContinentalPBICLE122.07%0.4%1.49%80%
Atlantic SoutheastTXKDFW124.57%0.06%5.16%5.85%
ContinentalIAHSDF122.07%1.92%0.29%16%
UnitedBOIDEN129.5%0.23%2.09%100%
UnitedBDLSFO129.5%0.63%1.32%100%
USAirBOSIAD1210.93%1.68%1.13%10.26%
ComairCVGCRW121.28%0.95%0.01%100%
JetblueSMFIAD121.4%1.04%1.13%28.57%
ComairRDULGA121.28%0.71%2.21%17.65%
ComairCVGISP121.28%0.95%0.38%100%
American EagleDFWMDW124.6%5.16%1.92%7.14%
ComairGSPLGA121.28%0.07%2.21%70.59%
ComairHSVMCO121.28%0.18%1.97%100%
SouthwestLASCLE1225.74%3.22%1.49%100%
NorthwestLAXSAN129.74%3.21%1.47%100%
ComairBGMCVG121.28%0%0.96%100%
Continental ExpressBOIIAH124.66%0.23%1.92%100%
ComairSRQCVG121.28%0.06%0.96%70.59%
UnitedDENDSM129.5%2.08%0.07%100%
Atlantic SoutheastATLTLH124.57%5.17%0.08%4.74%
ContinentalPVDEWR122.07%0.69%1.5%19.35%
JetblueLGBATL121.4%0.19%5.18%100%
ContinentalEWRPVD122.07%1.49%0.68%18.18%
USAirLGAIND1210.93%2.21%0.65%31.58%
AmericanORDCLE1210.03%4.12%1.49%5.08%
SouthwestMCIHOU1225.74%1.18%0.99%100%
AmericanRNOORD1210.03%0.58%4.12%100%
NorthwestEWRMEM129.74%1.49%0.65%35.29%
ContinentalEWRSAT122.07%1.49%0.54%100%
ComairMKECVG121.28%0.33%0.96%22.22%
NorthwestMKEMCO129.74%0.33%1.97%100%
UnitedDAYORD129.5%0.12%4.12%40%
ComairCVGICT121.28%0.95%0.05%100%
America WestLASMKE122.83%3.22%0.33%41.38%
DeltaCVGSAN129.32%0.95%1.47%100%
ComairLGACVG121.28%2.21%0.96%20.34%
DeltaSDFCVG129.32%0.29%0.96%25%
UnitedDENCOS129.5%2.08%0.12%100%
AmericanSTLMCO1210.03%1.19%1.97%9.38%
UnitedORDSAT129.5%4.12%0.54%15.38%
Atlantic SoutheastTLHATL124.57%0.08%5.18%4.71%
AmericanORDRNO1210.03%4.12%0.58%100%
DeltaDFWCVG129.32%5.16%0.96%80%
AmericanMCOSTL1210.03%1.97%1.19%8.96%
UnitedSFOBDL129.5%1.31%0.63%100%
DeltaATLDAY129.32%5.17%0.12%75%
DeltaCVGLEX129.32%0.95%0.09%38.71%
DeltaMCOABE129.32%1.97%0.15%57.14%
UnitedORDDAY129.5%4.12%0.12%41.38%
DeltaSANCVG129.32%1.47%0.96%100%
ContinentalCLEPBI112.07%1.49%0.4%78.57%
USAirERIPIT1110.93%0.01%1.32%100%
SouthwestLASBDL1125.74%3.22%0.63%100%
UnitedBDLIAD119.5%0.63%1.13%100%
DeltaATLCMH119.32%5.17%0.5%100%
DeltaLAXJFK119.32%3.21%1.07%2.27%
JetblueEWRMCO111.4%1.49%1.97%7.19%
DeltaBNACVG119.32%1.24%0.96%33.33%
DeltaCMHCVG119.32%0.5%0.96%68.75%
UnitedSFOONT119.5%1.31%0.77%100%
USAirPITGSO1110.93%1.31%0.14%100%
DeltaRDUCVG119.32%0.71%0.96%39.29%
ComairROACVG111.28%0.05%0.96%100%
DeltaMIACVG119.32%0.69%0.96%73.33%
AmericanSTLBWI1110.03%1.19%2.08%7.91%
AmericanSTLSAT1110.03%1.19%0.54%100%
ComairABECVG111.28%0.15%0.96%100%
ATALASPIE110.88%3.22%0.02%100%
ComairPITJFK111.28%1.31%1.07%26.83%
JetblueSANIAD111.4%1.47%1.13%8.03%
American EagleBOSSYR114.6%1.68%0.17%100%
ComairCVGMCO111.28%0.95%1.97%15.28%
USAirPITERI1110.93%1.31%0.01%100%
ComairCRWCVG111.28%0.01%0.96%100%
ComairISPCVG111.28%0.37%0.96%100%
ComairCVGCMH111.28%0.95%0.5%31.43%
Continental ExpressPBIIAH114.66%0.4%1.92%45.83%
ComairLGARIC111.28%2.21%0.27%19.64%
Continental ExpressCLEBOS114.66%1.49%1.68%16.67%
ComairXNACVG111.28%0.09%0.96%100%
DeltaABEMCO119.32%0.15%1.97%57.89%
Continental ExpressCLEBWI114.66%1.49%2.08%5.31%
ComairCVGMKE111.28%0.95%0.33%23.4%
AmericanLAXOAK1110.03%3.21%1.47%1.39%
NorthwestOGGHNL119.74%0.03%0.08%91.67%
American EaglePITDFW114.6%1.31%5.16%3.31%
ContinentalIAHONT112.07%1.92%0.77%91.67%
UnitedMDWIAD119.5%1.92%1.13%100%
USAirAVPPHL1110.93%0.02%2.24%100%
USAirBOSBUF1110.93%1.68%0.36%100%
Continental ExpressEWRHSV114.66%1.49%0.18%100%
USAirSJUPIT1110.93%0.19%1.32%100%
SouthwestSJCBWI1125.74%1.11%2.08%100%
DeltaCVGGSO119.32%0.95%0.14%31.43%
DeltaLEXCVG119.32%0.09%0.96%32.35%
ComairCVGSRQ111.28%0.95%0.06%64.71%
AmericanHNLSFO1110.03%0.08%1.32%25.58%
SouthwestISPLAS1125.74%0.37%3.22%100%
UnitedGSOORD119.5%0.14%4.12%100%
UnitedDENAUS119.5%2.08%0.61%100%
DeltaGSOCVG119.32%0.14%0.96%27.5%
Continental ExpressEWROKC114.66%1.49%0.26%100%
NorthwestMSPBNA119.74%2.83%1.24%100%
NorthwestDENLAX119.74%2.08%3.21%3.81%
ContinentalONTIAH112.07%0.77%1.92%91.67%
ComairMCORDU111.28%1.97%0.71%12.79%
JetblueIADSMF111.4%1.14%1.04%22.92%
ComairCVGBGM111.28%0.95%0%100%
AmericanPHXLAX1110.03%3.62%3.21%1.49%
DeltaSTLCVG119.32%1.19%0.96%40.74%
Continental ExpressIAHPBI114.66%1.92%0.4%45.83%
America WestTUSLAS112.83%0.31%3.22%7.53%
NorthwestGTFMSP119.74%0.01%2.83%100%
ComairCVGDCA111.28%0.95%1.94%26.83%
NorthwestMSPGTF119.74%2.83%0.01%100%
ComairCVGBTV101.28%0.95%0.09%100%
DeltaSEAJFK109.32%2.03%1.07%21.74%
UnitedBURSFO109.5%0.56%1.32%100%
JetblueEWRFLL101.4%1.49%1.05%10%
ContinentalEWRFLL102.07%1.49%1.05%10%
DeltaRSWCMH109.32%0.34%0.5%100%
AlaskaSEALGB102.45%2.03%0.19%100%
Continental ExpressBOSCLE104.66%1.68%1.49%12.66%
ComairHSVATL101.28%0.18%5.18%2%
America WestLASELP102.83%3.22%0.42%15.38%
NorthwestMSPFCA109.74%2.83%0%100%
SouthwestPBIPHL1025.74%0.4%2.24%20%
UnitedORDSTL109.5%4.12%1.19%5.92%
Atlantic SoutheastLITDFW104.57%0.25%5.16%4.17%
AmericanSTLSNA1010.03%1.19%0.56%100%
UnitedCOSDEN109.5%0.12%2.09%100%
American EagleORDROC104.6%4.12%0.21%14.49%
ComairFNTATL101.28%0.02%5.18%100%
AmericanMIABWI1010.03%0.69%2.08%90.91%
AmericanSATSTL1010.03%0.54%1.19%100%
DeltaCMHRSW109.32%0.5%0.34%100%
USAirIADPIT1010.93%1.14%1.32%100%
NorthwestMSPBIL109.74%2.83%0%100%
UnitedBOIORD109.5%0.23%4.12%100%
USAirPHLMDT1010.93%2.23%0.17%100%
ComairCVGIAH101.28%0.95%1.92%15.87%
ComairDCACHS101.28%1.94%0.14%18.18%
SouthwestOAKHOU1025.74%1.47%0.99%100%
Continental ExpressAVLIAH104.66%0.21%1.92%100%
NorthwestMEMBNA109.74%0.65%1.24%100%
Continental ExpressOKCEWR104.66%0.26%1.5%100%
DeltaBOSSLC109.32%1.68%0.79%100%
ComairTLHCVG101.28%0.08%0.96%100%
DeltaCOSDFW109.32%0.12%5.16%8.2%
NorthwestFCAMSP109.74%0%2.83%100%
SouthwestTPABUF1025.74%1.42%0.36%100%
ComairJFKBWI101.28%1.07%2.08%16.39%
USAirBOSFLL1010.93%1.68%1.05%5.68%
DeltaOAKATL109.32%1.47%5.18%71.43%
ComairATLDCA101.28%5.17%1.94%8.4%
ComairJFKCHS101.28%1.07%0.14%100%
ComairBWIATL101.28%2.09%5.18%8.85%
AmericanEWRMIA1010.03%1.49%0.69%16.39%
American EagleROCORD104.6%0.21%4.12%14.29%
DeltaATLOAK109.32%5.17%1.47%90.91%
DeltaLAXLAS109.32%3.21%3.22%0.96%
SouthwestPHXCLE1025.74%3.62%1.49%52.63%
Atlantic SoutheastDFWMLU104.57%5.16%0%100%
UnitedDSMDEN109.5%0.07%2.09%100%
ContinentalEWRPBI102.07%1.49%0.4%35.71%
DeltaCVGRIC109.32%0.95%0.27%35.71%
ComairMCOGSO101.28%1.97%0.14%100%
SouthwestLASGEG1025.74%3.22%0.27%58.82%
Atlantic SoutheastDFWLIT104.57%5.16%0.25%4.2%
America WestICTPHX102.83%0.05%3.62%100%
DeltaCVGBNA109.32%0.95%1.24%25.64%
AlaskaPSPPDX102.45%0.07%1.04%100%
Continental ExpressEWRBGR104.66%1.49%0.03%100%
UnitedAUSSFO109.5%0.61%1.32%100%
DeltaHNLLAX109.32%0.08%3.21%11.11%
ContinentalFLLEWR102.07%1.05%1.5%10.53%
DeltaJAXDFW109.32%0.46%5.16%12.05%
AlaskaLGBSEA102.45%0.19%2.03%100%
NorthwestMDWDTW109.74%1.92%2.37%3.92%
UnitedORDGSO109.5%4.12%0.14%100%
America WestPHXICT102.83%3.62%0.05%100%
ComairCVGERI101.28%0.95%0.01%100%
American EagleDFWPIT104.6%5.16%1.32%2.85%
American EagleMDTORD104.6%0.17%4.12%43.48%
NorthwestSLCDTW109.74%0.8%2.37%100%
NorthwestBILMSP109.74%0%2.83%100%
DeltaLAXMCO109.32%3.21%1.97%8.47%
Atlantic SoutheastMLUDFW104.57%0%5.16%100%
Continental ExpressBGREWR104.66%0.03%1.5%100%
DeltaPDXCVG109.32%1.04%0.96%100%
ContinentalBDLIAH102.07%0.63%1.92%100%
ComairERICVG101.28%0.01%0.96%100%
USAirJAXLGA1010.93%0.46%2.21%37.04%
USAirIADPHL1010.93%1.14%2.24%43.48%
SouthwestMCORSW1025.74%1.97%0.34%83.33%
ContinentalCLEPHL102.07%1.49%2.24%8.33%
ComairDTWJFK91.28%2.36%1.07%60%
ComairATLJFK91.28%5.17%1.07%90%
NorthwestMKEBOS99.74%0.33%1.68%100%
ATASJCMDW90.88%1.11%1.92%64.29%
NorthwestHDNMSP99.74%0%2.83%100%
ComairCVGCHO91.28%0.95%0%100%
ComairDCAHSV91.28%1.94%0.18%100%
NorthwestMSPHDN99.74%2.83%0%100%
Continental ExpressIAHPHX94.66%1.92%3.62%5.36%
ComairLGACLT91.28%2.21%2.06%3.35%
ATADFWIND90.88%5.16%0.65%6.38%
AmericanINDSTL910.03%0.65%1.19%24.32%
ComairCVGMHT91.28%0.95%0.47%90%
UnitedEGEDEN99.5%0.01%2.09%100%
SouthwestPHLLAS925.74%2.23%3.22%10%
American EagleSYRDFW94.6%0.17%5.16%100%
Continental ExpressEWRTUL94.66%1.49%0.29%100%
UnitedSTLDEN99.5%1.19%2.09%90%
UnitedTULDEN99.5%0.29%2.09%100%
SouthwestBDLLAS925.74%0.63%3.22%100%
AmericanLASSTL910.03%3.22%1.19%21.43%
NorthwestOMAMEM99.74%0.27%0.65%100%
Continental ExpressBFLIAH94.66%0%1.92%100%
AmericanSTLIND910.03%1.19%0.65%21.95%
UnitedSFORNO99.5%1.31%0.58%100%
ComairCVGCHS91.28%0.95%0.14%100%
American EagleDFWSYR94.6%5.16%0.17%100%
UnitedDENTUL99.5%2.08%0.29%100%
ContinentalIAHBDL92.07%1.92%0.63%100%
JetblueMCOEWR91.4%1.97%1.5%5.56%
AmericanSNASTL910.03%0.56%1.19%100%
NorthwestMEMEWR99.74%0.65%1.5%24.32%
UnitedORDBOI99.5%4.12%0.23%100%
ComairCVGFSD91.28%0.95%0.01%100%
DeltaLASLAX99.32%3.22%3.21%0.84%
AmericanDTWSTL910.03%2.36%1.19%5.23%
DeltaFLLIAD99.32%1.05%1.13%7.09%
DeltaSDFATL99.32%0.29%5.18%100%
SouthwestGEGLAS925.74%0.27%3.22%69.23%
Continental ExpressIAHBFL94.66%1.92%0%100%
UnitedORDAUS99.5%4.12%0.61%6.08%
USAirBUFBOS910.93%0.36%1.68%100%
USAirPITSJU910.93%1.31%0.19%100%
USAirMCOABE910.93%1.97%0.15%42.86%
DeltaDFWCOS99.32%5.16%0.12%7.56%
SouthwestPHLHOU925.74%2.23%0.99%100%
SouthwestPHLMSY925.74%2.23%0.94%11.11%
Continental ExpressSLCIAH94.66%0.8%1.92%29.03%
JetblueJFKBQN91.4%1.07%0%100%
ContinentalPHXCLE92.07%3.62%1.49%47.37%
DeltaCVGMIA99.32%0.95%0.69%69.23%
ComairCVGABE91.28%0.95%0.15%100%
USAirFLLBOS910.93%1.05%1.68%5.39%
USAirSJULGA910.93%0.19%2.21%100%
AmericanSTLLAS910.03%1.19%3.22%16.67%
ATAMDWSJC90.88%1.92%1.11%56.25%
ComairFSDCVG91.28%0.01%0.96%100%
America WestMKELAS92.83%0.33%3.22%28.13%
Continental ExpressPHXIAH94.66%3.62%1.92%4.92%
ContinentalPBIEWR92.07%0.4%1.5%33.33%
ComairCVGJFK91.28%0.95%1.07%28.13%
AmericanPVDDFW910.03%0.69%5.16%100%
ComairCHOCVG91.28%0%0.96%100%
USAirMDTPHL910.93%0.17%2.24%100%
NorthwestHNLSEA99.74%0.08%2.03%100%
ComairTYSLGA91.28%0.14%2.21%100%
JetblueBQNJFK91.4%0%1.07%100%
ComairCVGATL91.28%0.95%5.18%7.14%
SouthwestPITLAS925.74%1.31%3.22%10.47%
SouthwestMDWALB925.74%1.92%0.32%100%
NorthwestDTWGRB99.74%2.36%0.01%100%
UnitedDCADEN99.5%1.94%2.09%100%
Continental ExpressIAHAVL94.66%1.92%0.21%100%
ATAINDPHX90.88%0.65%3.62%8.57%
USAirLGAJAX910.93%2.21%0.46%29.03%
UnitedDENEGE99.5%2.08%0.01%100%
DeltaISPTPA99.32%0.37%1.41%6.72%
ContinentalCLEPHX92.07%1.49%3.62%39.13%
AmericanSTLDTW910.03%1.19%2.37%5.92%
Continental ExpressIAHSLC94.66%1.92%0.79%28.13%
AmericanDFWBTR810.03%5.16%0.08%5.84%
AmericanORFRIC810.03%0.26%0.27%100%
USAirDCARSW810.93%1.94%0.34%100%
ComairFLLCVG81.28%1.05%0.96%30.77%
AmericanRSWSTL810.03%0.34%1.19%100%
ContinentalIAHOAK82.07%1.92%1.47%100%
DeltaSTTATL89.32%0.02%5.18%100%
ComairAVLCVG81.28%0.21%0.96%100%
ComairCVGCMI81.28%0.95%0%100%
AmericanSTLSDF810.03%1.19%0.29%7.55%
Continental ExpressIAHGRK84.66%1.92%0.05%100%
ComairLGATYS81.28%2.21%0.13%100%
NorthwestSJUMEM89.74%0.19%0.65%100%
AmericanBWISTL810.03%2.09%1.19%6.96%
ComairBOSRDU81.28%1.68%0.71%66.67%
UnitedDENDCA89.5%2.08%1.94%100%
SouthwestFLLHOU825.74%1.05%0.99%100%
ComairJFKGSO81.28%1.07%0.14%100%
SouthwestALBMDW825.74%0.32%1.92%100%
NorthwestDTWBUF89.74%2.36%0.36%100%
SouthwestJANMCO825.74%0.1%1.97%100%
Continental ExpressMSPIAH84.66%2.83%1.92%3.59%
American EagleORDMDT84.6%4.12%0.17%38.1%
ComairJAXDCA81.28%0.46%1.94%16%
ATAPIELAS80.88%0.02%3.22%100%
Continental ExpressSRQIAH84.66%0.06%1.92%100%
DeltaATLSTT89.32%5.17%0.02%100%
AmericanLAXTUL810.03%3.21%0.29%100%
NorthwestINDLGA89.74%0.65%2.21%20.51%
DeltaLEXATL89.32%0.09%5.18%4.79%
ContinentalOAKIAH82.07%1.47%1.92%100%
AmericanBTRDFW810.03%0.08%5.16%6.45%
UnitedICTDEN89.5%0.05%2.09%100%
UnitedDENICT89.5%2.08%0.05%100%
UnitedCLTDEN89.5%2.06%2.09%6.61%
ATASJUMDW80.88%0.19%1.92%100%
NorthwestBUFDTW89.74%0.36%2.37%100%
ContinentalORFEWR82.07%0.26%1.5%11.43%
ComairBNAJFK81.28%1.24%1.07%100%
ATAINDDFW80.88%0.65%5.16%5.67%
Continental ExpressAUSIAH84.66%0.61%1.92%11.11%
NorthwestBNAMEM89.74%1.24%0.65%100%
USAirROCBOS810.93%0.21%1.68%32%
ContinentalEWRORF82.07%1.49%0.26%10.67%
Continental ExpressGRKIAH84.66%0.05%1.92%100%
AmericanJFKMCO810.03%1.07%1.97%3.07%
USAirABEMCO810.93%0.15%1.97%42.11%
ComairCVGXNA81.28%0.95%0.09%100%
USAirIADSJU810.93%1.14%0.19%11.11%
ComairRICLGA81.28%0.27%2.21%15.69%
AmericanDENMIA810.03%2.08%0.69%4.97%
ATAMDWSJU80.88%1.92%0.19%100%
AlaskaSEADEN82.45%2.03%2.09%4.79%
SouthwestMDWSLC825.74%1.92%0.79%100%
ComairHPNCVG81.28%0.09%0.96%100%
ComairLGAGSP81.28%2.21%0.07%57.14%
DeltaSFOCVG89.32%1.31%0.96%100%
AmericanSTLPHL810.03%1.19%2.24%10%
DeltaBOSLAS89.32%1.68%3.22%72.73%
ContinentalIAHMCO82.07%1.92%1.97%88.89%
Continental ExpressMTJIAH84.66%0.01%1.92%53.33%
America WestELPLAS82.83%0.42%3.22%14.04%
ComairGSOJFK81.28%0.14%1.07%100%
AmericanPHLMIA810.03%2.23%0.69%16%
Continental ExpressIAHSRQ84.66%1.92%0.06%100%
ComairSATCVG81.28%0.54%0.96%32%
SouthwestOAKPHL825.74%1.47%2.24%100%
USAirSDFPHL810.93%0.29%2.24%100%
ComairCMICVG81.28%0%0.96%100%
USAirDCADAY810.93%1.94%0.12%100%
AmericanSDFSTL810.03%0.29%1.19%7.55%
USAirCLTSTT810.93%2.06%0.02%100%
ComairCVGAVL81.28%0.95%0.21%100%
ContinentalMSYCLE82.07%0.95%1.49%26.67%
DeltaSFOHNL89.32%1.31%0.08%17.39%
ComairAVPATL81.28%0.02%5.18%100%
DeltaCVGPDX89.32%0.95%1.04%100%
Continental ExpressIAHMTJ84.66%1.92%0.01%53.33%
ComairMCOTLH81.28%1.97%0.08%100%
ContinentalPHXIAH82.07%3.62%1.92%4.37%
DeltaALBMCO89.32%0.32%1.97%7.02%
AlaskaDENSEA82.45%2.08%2.03%4.73%
America WestLASDTW82.83%3.22%2.37%3.79%
DeltaMCOALB89.32%1.97%0.32%6.67%
American EagleDFWCID84.6%5.16%0.01%100%
America WestLASSTL82.83%3.22%1.19%19.05%
AmericanSTLRSW810.03%1.19%0.34%100%
ComairCVGSHV71.28%0.95%0.12%100%
ComairCLTLGA71.28%2.06%2.21%2.48%
ContinentalFLLIAH72.07%1.05%1.92%100%
Continental ExpressIAHMSP74.66%1.92%2.83%3.04%
ComairSHVCVG71.28%0.12%0.96%100%
Atlantic SoutheastCAKCVG74.57%0.01%0.96%30.43%
UnitedAUSDEN79.5%0.61%2.09%100%
AmericanMCOJFK710.03%1.97%1.07%2.55%
ComairHOUCVG71.28%0.99%0.96%100%
USAirORFDCA710.93%0.26%1.94%100%
AmericanSTLSJC710.03%1.19%1.11%100%
ContinentalIAHMTJ72.07%1.92%0.01%46.67%
UnitedMIASFO79.5%0.69%1.32%17.95%
DeltaPHXCVG79.32%3.62%0.96%100%
USAirRSWDCA710.93%0.34%1.94%100%
ContinentalCLEMIA72.07%1.49%0.69%18.42%
ComairMCOFLL71.28%1.97%1.05%2.65%
NorthwestMEMSJU79.74%0.65%0.19%100%
Atlantic SoutheastCVGCAK74.57%0.95%0.01%29.17%
SouthwestHOUTPA725.74%0.99%1.41%100%
UnitedORDLNK79.5%4.12%0%100%
ComairCAKATL71.28%0.01%5.18%100%
ComairDCACMH71.28%1.94%0.5%18.42%
SouthwestTPAHOU725.74%1.42%0.99%100%
DeltaTPAISP79.32%1.42%0.38%6.25%
JetbluePHXJFK71.4%3.62%1.07%58.33%
American EagleMSPORD74.6%2.83%4.12%3.1%
ComairTLHFLL71.28%0.08%1.05%100%
Continental ExpressDENCLE74.66%2.08%1.49%9.59%
USAirPITROA710.93%1.31%0.05%100%
SouthwestMCOPIT725.74%1.97%1.32%11.29%
USAirDCAORF710.93%1.94%0.26%100%
ComairROCCVG71.28%0.21%0.96%100%
AlaskaPSPSJC72.45%0.07%1.11%100%
SouthwestLASPHL725.74%3.22%2.24%8.14%
ContinentalIAHFLL72.07%1.92%1.05%100%
ContinentalIAHSTL72.07%1.92%1.19%6.67%
NorthwestLAXDEN79.74%3.21%2.09%2.07%
USAirLGASJU710.93%2.21%0.19%100%
ContinentalMIACLE72.07%0.69%1.49%18.42%
ContinentalBNAIAH72.07%1.24%1.92%7.95%
ComairCVGHOU71.28%0.95%0.99%100%
AmericanDFWPVD710.03%5.16%0.68%100%
America WestLASGEG72.83%3.22%0.27%41.18%
SouthwestPVDHOU725.74%0.69%0.99%100%
UnitedSTLORD79.5%1.19%4.12%4.09%
JetblueRSWBOS71.4%0.34%1.68%12.73%
AmericanTULLAX710.03%0.29%3.21%100%
Continental ExpressLITEWR74.66%0.25%1.5%100%
ContinentalSTLIAH72.07%1.19%1.92%7.69%
ComairCVGHPN71.28%0.95%0.09%100%
ComairCVGSAT71.28%0.95%0.54%28%
ComairBTVCVG71.28%0.09%0.96%100%
ComairCVGTLH71.28%0.95%0.08%100%
NorthwestFCAGTF79.74%0%0.01%100%
ComairATLXNA71.28%5.17%0.09%100%
NorthwestGTFFCA79.74%0.01%0%100%
ComairISPATL71.28%0.37%5.18%100%
ComairDCAJAX71.28%1.94%0.46%16.67%
America WestLASOMA72.83%3.22%0.27%8.64%
Atlantic SoutheastCVGTOL74.57%0.95%0.01%20.59%
ContinentalIAHPHX72.07%1.92%3.62%4.17%
Continental ExpressCLEPWM74.66%1.49%0.09%100%
ContinentalMCOEWR72.07%1.97%1.5%4.32%
American EagleCIDDFW74.6%0.01%5.16%100%
SouthwestMDWSJC725.74%1.92%1.11%43.75%
ContinentalMTJIAH72.07%0.01%1.92%46.67%
DeltaJFKSEA79.32%1.07%2.03%16.28%
USAirSJUIAD710.93%0.19%1.13%13.73%
DeltaCVGDEN79.32%0.95%2.09%100%
NorthwestDENIND79.74%2.08%0.65%15.91%
Atlantic SoutheastTOLCVG74.57%0.01%0.96%20.59%
JetblueJFKPHX71.4%1.07%3.62%53.85%
JetblueJFKSMF71.4%1.07%1.04%100%
DeltaATLLEX79.32%5.17%0.09%4.32%
ComairFLLTLH71.28%1.05%0.08%100%
American EagleORDMSP74.6%4.12%2.83%2.48%
DeltaJFKSFO79.32%1.07%1.32%4.35%
UnitedLNKDEN79.5%0%2.09%100%
DeltaIADFLL79.32%1.14%1.05%5.83%
JetblueBOSRSW71.4%1.68%0.34%12.73%
ContinentalEWRAUS72.07%1.49%0.61%100%
SouthwestPHLOAK725.74%2.23%1.47%100%
NorthwestDTWIAD69.74%2.36%1.13%100%
NorthwestDTWJFK69.74%2.36%1.07%40%
America WestOMALAS62.83%0.27%3.22%5.77%
AmericanSJCSTL610.03%1.11%1.19%100%
ATAINDLAX60.88%0.65%3.21%7.14%
USAirLGAGSP610.93%2.21%0.07%42.86%
AmericanSNASFO610.03%0.56%1.32%3.85%
ContinentalIAHBNA62.07%1.92%1.24%8.11%
AmericanBDLMIA610.03%0.63%0.69%100%
ComairCVGBGR61.28%0.95%0.03%100%
AmericanLAXSJU610.03%3.21%0.19%100%
DeltaSFOSLC69.32%1.31%0.79%28.57%
DeltaSLCMSY69.32%0.8%0.94%100%
ComairATLABE61.28%5.17%0.15%4.08%
ComairATLISP61.28%5.17%0.38%100%
ComairBGRCVG61.28%0.03%0.96%100%
ContinentalEWRMCO62.07%1.49%1.97%3.92%
UnitedDENGUC69.5%2.08%0%100%
AmericanBUFDFW610.03%0.36%5.16%33.33%
ComairSTLATL61.28%1.19%5.18%1.16%
ComairATLEVV61.28%5.17%0.01%85.71%
ContinentalIAHLAX62.07%1.92%3.21%9.09%
ComairJFKBNA61.28%1.07%1.24%100%
ComairJFKIND61.28%1.07%0.65%100%
AlaskaPDXDEN62.45%1.04%2.09%4.11%
SouthwestJAXPHL625.74%0.46%2.24%5.94%
ATALAXIND60.88%3.21%0.65%7.06%
ComairATLCAK61.28%5.17%0.01%100%
AmericanMIAMSY610.03%0.69%0.94%100%
ContinentalIAHPIT62.07%1.92%1.32%4.08%
ComairLGABNA61.28%2.21%1.24%10.53%
AmericanMSYMIA610.03%0.95%0.69%100%
UnitedORDGEG69.5%4.12%0.27%100%
ComairPITATL61.28%1.31%5.18%5.31%
Continental ExpressCLESRQ64.66%1.49%0.06%66.67%
American EagleIAHDFW64.6%1.92%5.16%1.97%
NorthwestMKEDCA69.74%0.33%1.94%100%
NorthwestMKELGA69.74%0.33%2.21%100%
Atlantic SoutheastATLCHS64.57%5.17%0.14%7.14%
DeltaCVGPHX69.32%0.95%3.62%100%
Continental ExpressCLECRW64.66%1.49%0.01%100%
SouthwestLASPIT625.74%3.22%1.32%6.67%
DeltaDFWTPA69.32%5.16%1.41%3.47%
ComairJFKSDF61.28%1.07%0.29%100%
ComairJFKTLH61.28%1.07%0.08%100%
ContinentalLAXIAH62.07%3.21%1.92%11.32%
SouthwestMDWAUS625.74%1.92%0.61%100%
America WestSTLLAS62.83%1.19%3.22%11.11%
NorthwestINDDEN69.74%0.65%2.09%15.38%
DeltaALBATL69.32%0.32%5.18%100%
ContinentalMCOIAH62.07%1.97%1.92%85.71%
ContinentalEWRMCI62.07%1.49%1.18%22.22%
USAirLGARSW610.93%2.21%0.34%85.71%
UnitedGEGORD69.5%0.27%4.12%100%
Continental ExpressCLEDEN64.66%1.49%2.09%9.68%
Continental ExpressCLESAT64.66%1.49%0.54%100%
American EagleDFWIAH64.6%5.16%1.92%1.76%
DeltaJFKPHX69.32%1.07%3.62%46.15%
AmericanSJCPHX610.03%1.11%3.62%2.08%
AmericanMSPMIA610.03%2.83%0.69%6.98%
Continental ExpressSRQCLE64.66%0.06%1.49%66.67%
ComairATLAVP61.28%5.17%0.01%100%
DeltaHNLOGG69.32%0.08%0.03%27.27%
USAirMCOBDL610.93%1.97%0.63%3.06%
UnitedDENSTL69.5%2.08%1.19%85.71%
Continental ExpressPWMCLE64.66%0.1%1.49%100%
SouthwestORFMDW625.74%0.26%1.92%100%
AmericanSFOSNA610.03%1.31%0.56%3.39%
Continental ExpressIAHSAT64.66%1.92%0.54%7.79%
ComairMCOBNA61.28%1.97%1.24%3.8%
ComairTLHJFK61.28%0.08%1.07%100%
UnitedBOSJFK69.5%1.68%1.07%7.69%
Atlantic SoutheastCHSATL64.57%0.14%5.18%7.14%
ComairGSPATL61.28%0.07%5.18%11.11%
AmericanSJULAX610.03%0.19%3.21%100%
JetblueSMFJFK61.4%1.04%1.07%100%
SouthwestRSWBWI625.74%0.34%2.08%100%
AmericanABQSTL610.03%0.8%1.19%10.34%
UnitedANCSFO69.5%0.22%1.32%100%
UnitedRDUORD69.5%0.71%4.12%3.35%
ComairGRRATL61.28%0.15%5.18%66.67%
USAirDAYPHL610.93%0.12%2.24%100%
UnitedJFKSFO69.5%1.07%1.32%3.73%
Atlantic SoutheastATLCRW64.57%5.17%0.01%60%
ContinentalLGAFLL62.07%2.21%1.05%3.9%
DeltaOGGLAX69.32%0.03%3.21%25%
ComairMIAMCO61.28%0.69%1.97%16.22%
USAirINDLGA610.93%0.65%2.21%15.38%
AmericanORDXNA610.03%4.12%0.09%10%
ContinentalFLLLGA62.07%1.05%2.21%4.23%
NorthwestFAIMSP69.74%0.03%2.83%100%
ContinentalRNOIAH62.07%0.58%1.92%100%
AmericanSTLMCI610.03%1.19%1.18%3.09%
AmericanSTLPHX610.03%1.19%3.62%1.83%
NorthwestIADDTW69.74%1.14%2.37%100%
Atlantic SoutheastCRWATL64.57%0.01%5.18%60%
Continental ExpressEWRLIT64.66%1.49%0.25%100%
ComairATLSTL61.28%5.17%1.19%1.16%
ComairDSMATL61.28%0.07%5.18%100%
UnitedDENGEG69.5%2.08%0.27%100%
AmericanXNAORD610.03%0.09%4.12%10%
ComairDCAATL61.28%1.94%5.18%5.31%
Continental ExpressEWRMYR64.66%1.49%0.18%75%
AlaskaSJCPSP62.45%1.11%0.07%100%
UnitedGEGDEN69.5%0.27%2.09%100%
Continental ExpressMYREWR64.66%0.18%1.5%75%
ComairTLHMIA61.28%0.08%0.69%100%
ComairATLDSM61.28%5.17%0.07%100%
Continental ExpressCLLIAH64.66%0.13%1.92%100%
ComairINDJFK61.28%0.65%1.07%100%
ContinentalIAHRNO62.07%1.92%0.58%100%
ComairORFJFK61.28%0.26%1.07%100%
UnitedSFOJFK69.5%1.31%1.07%3.97%
DeltaATLALB69.32%5.17%0.32%100%
America WestLASIAH62.83%3.22%1.92%100%
AmericanSJUDFW610.03%0.19%5.16%100%
Continental ExpressIAHCLL64.66%1.92%0.13%100%
SouthwestPHLJAX625.74%2.23%0.46%4.76%
NorthwestJFKDTW69.74%1.07%2.37%100%
ComairJFKORF61.28%1.07%0.26%100%
AlaskaDENPDX62.45%2.08%1.04%4.58%
NorthwestGRBDTW69.74%0.01%2.37%100%
ComairMHTCVG61.28%0.47%0.96%85.71%
NorthwestMSPFAI69.74%2.83%0.03%100%
Continental ExpressSATIAH64.66%0.54%1.92%8.96%
Continental ExpressCRWCLE64.66%0.01%1.49%100%
DeltaCVGSRQ69.32%0.95%0.06%35.29%
UnitedORDRDU69.5%4.12%0.71%3.23%
DeltaLASBOS59.32%3.22%1.68%62.5%
NorthwestMSPBIS59.74%2.83%0%100%
ComairSLCHLN51.28%0.8%0%100%
Continental ExpressMLUIAH54.66%0%1.92%100%
AmericanMTJDFW510.03%0.01%5.16%55.56%
NorthwestANCHNL59.74%0.22%0.08%100%
ComairDAYATL51.28%0.12%5.18%29.41%
Continental ExpressMSYIAH54.66%0.95%1.92%5.56%
Continental ExpressCLETPA54.66%1.49%1.41%8.33%
DeltaTPALAX59.32%1.42%3.21%62.5%
DeltaCVGRSW59.32%0.95%0.34%83.33%
AlaskaGEGLAX52.45%0.27%3.21%100%
AmericanORDMTJ510.03%4.12%0.01%100%
DeltaRSWCVG59.32%0.34%0.96%83.33%
UnitedDENTUS59.5%2.08%0.31%100%
USAirGSPLGA510.93%0.07%2.21%29.41%
DeltaHOUATL59.32%0.99%5.18%100%
USAirSTTLGA510.93%0.02%2.21%100%
Continental ExpressIAHAUS54.66%1.92%0.61%7.94%
ComairLGALEX51.28%2.21%0.09%100%
UnitedOKCDEN59.5%0.26%2.09%100%
UnitedORDSYR59.5%4.12%0.17%8.62%
NorthwestSJUMSP59.74%0.19%2.83%100%
DeltaCMHFLL59.32%0.5%1.05%100%
ComairGSPMCO51.28%0.07%1.97%100%
DeltaLASJFK59.32%3.22%1.07%5.43%
Atlantic SoutheastATLABY54.57%5.17%0%83.33%
NorthwestMEMIAD59.74%0.65%1.13%100%
UnitedORDANC59.5%4.12%0.22%100%
AmericanMIABDL510.03%0.69%0.63%100%
American EagleROCDFW54.6%0.21%5.16%100%
AmericanATLLGA510.03%5.17%2.21%2.14%
NorthwestLASFNT59.74%3.22%0.02%100%
USAirSDFLGA510.93%0.29%2.21%100%
ComairMCOGSP51.28%1.97%0.07%100%
ContinentalPVDCLE52.07%0.69%1.49%9.26%
DeltaRNOATL59.32%0.58%5.18%100%
USAirBOSROC510.93%1.68%0.21%22.73%
ContinentalIAHSEA52.07%1.92%2.03%100%
USAirSNAPHL510.93%0.56%2.24%100%
ComairATLATW51.28%5.17%0.01%100%
SouthwestMDWSMF525.74%1.92%1.04%100%
ContinentalCLEMDW52.07%1.49%1.92%1.76%
ContinentalCLEPVD52.07%1.49%0.68%10%
American EagleDFWROC54.6%5.16%0.21%100%
Atlantic SoutheastABYATL54.57%0%5.18%83.33%
ComairCMHCVG51.28%0.5%0.96%31.25%
USAirMCOBUF510.93%1.97%0.36%7.58%
DeltaATLRNO59.32%5.17%0.58%100%
NorthwestBISMSP59.74%0%2.83%100%
ContinentalCLEMSY52.07%1.49%0.94%18.52%
ContinentalPHLCLE52.07%2.23%1.49%3.65%
DeltaDFWJAX59.32%5.16%0.46%6.25%
JetblueIADSAN51.4%1.14%1.47%4.72%
ComairBUFATL51.28%0.36%5.18%100%
Continental ExpressIAHMLU54.66%1.92%0%100%
ComairMCOHSV51.28%1.97%0.18%100%
DeltaATLMEM59.32%5.17%0.65%17.86%
AmericanPHXSTL510.03%3.62%1.19%1.34%
USAirPITIAD510.93%1.31%1.13%100%
JetblueSJCBOS51.4%1.11%1.68%100%
ComairATLGRR51.28%5.17%0.15%62.5%
DeltaHNLSFO59.32%0.08%1.32%11.63%
USAirLGASTT510.93%2.21%0.02%100%
AlaskaSMFPDX52.45%1.04%1.04%2.78%
UnitedDENOKC59.5%2.08%0.26%100%
Atlantic SoutheastILMATL54.57%0.04%5.18%100%
ComairJFKSTL51.28%1.07%1.19%15.63%
SouthwestSJCMDW525.74%1.11%1.92%35.71%
AmericanBOSJFK510.03%1.68%1.07%6.41%
NorthwestMSPSJU59.74%2.83%0.19%100%
UnitedAUSORD59.5%0.61%4.12%3.03%
ComairHLNSLC51.28%0%0.79%100%
ComairATLGSP51.28%5.17%0.07%9.43%
DeltaFLLCMH59.32%1.05%0.5%100%
AmericanORDCMH510.03%4.12%0.5%5.05%
DeltaCVGABQ59.32%0.95%0.8%100%
Continental ExpressIAHMSY54.66%1.92%0.94%5.56%
AmericanOKCORD510.03%0.26%4.12%6.02%
ComairBNAMCO51.28%1.24%1.97%2.59%
JetblueBOSSJC51.4%1.68%1.11%100%
ComairCVGBOS51.28%0.95%1.68%16.67%
ComairPWMBOS51.28%0.1%1.68%9.43%
ComairBOSPWM51.28%1.68%0.09%9.43%
USAirLGASDF510.93%2.21%0.29%100%
AmericanCMHORD510.03%0.5%4.12%5.75%
DeltaCVGIND59.32%0.95%0.65%17.86%
ComairDCABOS51.28%1.94%1.68%2.16%
AmericanDFWBUF510.03%5.16%0.36%27.78%
Continental ExpressSATCLE54.66%0.54%1.49%100%
AmericanPITMIA510.03%1.31%0.69%17.24%
USAirBWILGA510.93%2.09%2.21%100%
AmericanMTJORD510.03%0.01%4.12%100%
AmericanJFKBOS510.03%1.07%1.68%6.49%
ComairLGAPWM51.28%2.21%0.09%62.5%
USAirPHLSNA510.93%2.23%0.56%100%
ContinentalCLEDTW52.07%1.49%2.37%3.05%
AmericanORFSTL510.03%0.26%1.19%100%
AlaskaPDXSMF52.45%1.04%1.04%2.33%
AmericanSTLORF510.03%1.19%0.26%100%
ComairATWATL51.28%0.01%5.18%100%
SouthwestMSYMDW525.74%0.95%1.92%100%
ComairSDFJFK51.28%0.29%1.07%100%
DeltaCVGPVD59.32%0.95%0.68%55.56%
DeltaPHXJFK59.32%3.62%1.07%41.67%
American EagleSAVDFW54.6%0.12%5.16%100%
ComairXNAATL51.28%0.09%5.18%100%
AmericanLGAATL510.03%2.21%5.18%2.72%
AmericanORDSMF510.03%4.12%1.04%3.5%
UnitedSYRORD59.5%0.17%4.12%8.62%
DeltaATLHOU59.32%5.17%0.99%100%
Continental ExpressBOSEWR54.66%1.68%1.5%3.76%
ComairPHLJFK51.28%2.23%1.07%100%
USAirGSPPHL510.93%0.07%2.24%100%
AmericanDFWMTJ510.03%5.16%0.01%55.56%
USAirPBILGA510.93%0.4%2.21%6.58%
Continental ExpressTPACLE54.66%1.42%1.49%8.33%
Atlantic SoutheastATLILM54.57%5.17%0.04%100%
SouthwestSMFMDW525.74%1.04%1.92%100%
DeltaSRQCVG59.32%0.06%0.96%29.41%
SouthwestMDWMSY525.74%1.92%0.94%100%
UnitedSFOEUG59.5%1.31%0%100%
ComairCVGLGA51.28%0.95%2.21%12.82%
American EagleDFWSAV54.6%5.16%0.12%100%
SouthwestLASOKC525.74%3.22%0.26%100%
AmericanSJCPDX510.03%1.11%1.04%2.15%
ContinentalPITIAH52.07%1.31%1.92%2.99%
NorthwestOGGANC49.74%0.03%0.22%100%
USAirSJUFLL410.93%0.19%1.05%100%
DeltaSLCSJC49.32%0.8%1.11%100%
DeltaCVGIAH49.32%0.95%1.92%6.35%
ATALAXPIE40.88%3.21%0.02%100%
USAirPHLGSP410.93%2.23%0.07%100%
USAirBWIMCO410.93%2.09%1.97%1.54%
American EagleMTJDFW44.6%0.01%5.16%44.44%
ComairJFKSAV41.28%1.07%0.12%100%
Atlantic SoutheastATLGSP44.57%5.17%0.07%7.55%
ATAINDMIA40.88%0.65%0.69%57.14%
DeltaPVDFLL49.32%0.69%1.05%66.67%
USAirTPABWI410.93%1.42%2.08%1.99%
UnitedEUGSFO49.5%0%1.32%100%
DeltaSMFSLC49.32%1.04%0.79%100%
Continental ExpressEWRBOS44.66%1.49%1.68%2.9%
USAirSJUSTT410.93%0.19%0.02%7.41%
NorthwestDCAMKE49.74%1.94%0.33%100%
Continental ExpressHOUCLE44.66%0.99%1.49%100%
ComairLGARDU41.28%2.21%0.71%7.41%
ComairATLCRW41.28%5.17%0.01%40%
ComairCHSJFK41.28%0.14%1.07%100%
SouthwestMDWRSW425.74%1.92%0.34%9.09%
AmericanMIASJU410.03%0.69%0.19%66.67%
JetbluePBILGA41.4%0.4%2.21%5.26%
NorthwestRSWMKE49.74%0.34%0.33%100%
AmericanMCISTL410.03%1.18%1.19%2.02%
Continental ExpressCLEMIA44.66%1.49%0.69%10.53%
UnitedGUCDEN49.5%0%2.09%100%
SouthwestTPAPIT425.74%1.42%1.32%6.35%
America WestATLLAS42.83%5.17%3.22%3.67%
ComairATLBUF41.28%5.17%0.36%100%
ComairATLDAY41.28%5.17%0.12%25%
ComairATLLEX41.28%5.17%0.09%2.47%
UnitedJFKBOS49.5%1.07%1.68%5.19%
ComairMDWCVG41.28%1.92%0.96%100%
Continental ExpressBWICLE44.66%2.09%1.49%2.19%
ContinentalIAHCRP42.07%1.92%0.05%4.17%
USAirSDFDCA410.93%0.29%1.94%100%
ComairCLEATL41.28%1.49%5.18%2.61%
NorthwestLGAIND49.74%2.21%0.65%10.53%
UnitedTUSDEN49.5%0.31%2.09%100%
DeltaANCFAI49.32%0.22%0.03%5.13%
ComairDCAFLL41.28%1.94%1.05%3.23%
ComairMHTLGA41.28%0.47%2.21%19.05%
ComairBTVBOS41.28%0.09%1.68%13.79%
ComairCHSATL41.28%0.14%5.18%4.76%
DeltaFLLPVD49.32%1.05%0.68%100%
SouthwestMDWORF425.74%1.92%0.26%100%
DeltaCVGORF49.32%0.95%0.26%21.05%
Continental ExpressIAHRSW44.66%1.92%0.34%18.18%
USAirPHLMYR410.93%2.23%0.18%100%
ComairCVGFLL41.28%0.95%1.05%14.81%
ComairDCAMCO41.28%1.94%1.97%5.06%
America WestLASTUS42.83%3.22%0.31%3.39%
Continental ExpressMIACLE44.66%0.69%1.49%10.53%
NorthwestPHXMKE49.74%3.62%0.33%4.55%
Continental ExpressXNACLE44.66%0.09%1.49%100%
ContinentalCRPIAH42.07%0.05%1.92%4.21%
DeltaINDRSW49.32%0.65%0.34%10.81%
SouthwestOKCLAS425.74%0.26%3.22%100%
UnitedPHLIAD49.5%2.23%1.13%21.05%
Continental ExpressRSWIAH44.66%0.34%1.92%18.18%
SouthwestRSWMCO425.74%0.34%1.97%66.67%
USAirDAYDCA410.93%0.12%1.94%100%
ContinentalEWRDAB42.07%1.49%0.01%16.67%
AmericanMIAPIT410.03%0.69%1.32%21.05%
DeltaCVGCOS49.32%0.95%0.12%100%
DeltaIAHCVG49.32%1.92%0.96%6.25%
ContinentalPITEWR42.07%1.31%1.5%2.34%
Continental ExpressCLEHOU44.66%1.49%0.99%100%
America WestLASATL42.83%3.22%5.18%2.6%
SouthwestMSYPHL425.74%0.95%2.24%5.06%
Continental ExpressDABCLE44.66%0.01%1.49%100%
USAirPVDBWI410.93%0.69%2.08%0.9%
JetbluePDXJFK41.4%1.04%1.07%100%
USAirHPNPIT410.93%0.09%1.32%100%
DeltaLAXTPA49.32%3.21%1.41%57.14%
USAirPITHPN410.93%1.31%0.09%100%
SouthwestHOUPVD425.74%0.99%0.68%100%
JetblueJFKPDX41.4%1.07%1.04%100%
SouthwestMCIDAL425.74%1.18%0.48%100%
ContinentalSEAIAH42.07%2.03%1.92%100%
ComairATLCAE41.28%5.17%0.11%1.57%
AmericanCOSSTL410.03%0.12%1.19%100%
ComairHVNCVG41.28%0%0.96%100%
SouthwestDALMCI425.74%0.48%1.18%100%
SouthwestRSWMDW425.74%0.34%1.92%9.09%
USAirMCOMDT410.93%1.97%0.17%100%
ComairPVDCVG41.28%0.69%0.96%57.14%
Continental ExpressIAHDEN44.66%1.92%2.09%4.3%
DeltaCOSCVG49.32%0.12%0.96%100%
ComairCVGMDW41.28%0.95%1.92%100%
ComairCVGPVD41.28%0.95%0.68%44.44%
AmericanSTLCOS410.03%1.19%0.12%100%
NorthwestFNTLAS49.74%0.02%3.22%100%
ComairATLFNT41.28%5.17%0.02%100%
DeltaLGADFW49.32%2.21%5.16%1.99%
ComairFLLRIC41.28%1.05%0.27%100%
ComairMCOCAE41.28%1.97%0.11%100%
ComairMCODCA41.28%1.97%1.94%5.97%
AmericanBOSRDU410.03%1.68%0.71%33.33%
ComairCVGHVN41.28%0.95%0%100%
AmericanDFWDRO410.03%5.16%0%100%
America WestLASBUR42.83%3.22%0.57%1.03%
America WestLASORD42.83%3.22%4.12%0.98%
DeltaSLCSMF49.32%0.8%1.04%100%
AmericanSTLCLE410.03%1.19%1.49%3.01%
AmericanSTLHNL410.03%1.19%0.08%100%
ContinentalEWRGSO42.07%1.49%0.14%6.9%
AmericanMIAMSP410.03%0.69%2.83%4.76%
NorthwestMEMMCI49.74%0.65%1.18%100%
DeltaSJUJFK49.32%0.19%1.07%3.51%
USAirBDLMCO410.93%0.63%1.97%2.08%
Continental ExpressCLEXNA44.66%1.49%0.09%100%
USAirFLLSJU410.93%1.05%0.19%100%
America WestGEGLAS42.83%0.27%3.22%30.77%
ComairMIACVG41.28%0.69%0.96%26.67%
America WestBURLAS42.83%0.56%3.22%1.06%
ComairABEATL41.28%0.15%5.18%3.64%
ComairFLLDCA41.28%1.05%1.94%3.54%
American EagleDFWTYS44.6%5.16%0.13%100%
America WestLASMCI42.83%3.22%1.18%1.83%
DeltaFLLORD49.32%1.05%4.12%2.05%
ComairCRWATL41.28%0.01%5.18%40%
ContinentalDABEWR42.07%0.01%1.5%16%
AmericanDRODFW410.03%0%5.16%100%
American EagleTYSDFW44.6%0.14%5.16%100%
DeltaFAIANC49.32%0.03%0.22%5%
AmericanCLESTL410.03%1.49%1.19%3.81%
USAirDCASDF410.93%1.94%0.29%100%
Atlantic SoutheastGSPATL44.57%0.07%5.18%7.41%
NorthwestLGAMKE49.74%2.21%0.33%100%
ContinentalORFIAH42.07%0.26%1.92%19.05%
ComairATLCHS41.28%5.17%0.14%4.76%
USAirLGAPBI410.93%2.21%0.4%4.08%
JetblueLGAPBI41.4%2.21%0.4%4.08%
ContinentalIAHORF42.07%1.92%0.26%21.05%
ComairRICFLL41.28%0.27%1.05%100%
ComairCVGMIA41.28%0.95%0.69%30.77%
NorthwestINDPHX49.74%0.65%3.62%3.81%
ComairATLDTW41.28%5.17%2.37%2.25%
USAirBWISEA410.93%2.09%2.03%80%
ContinentalEWRBDL42.07%1.49%0.63%13.33%
NorthwestMKERSW49.74%0.33%0.34%100%
SouthwestPDXMDW425.74%1.04%1.92%100%
ATASFOIND40.88%1.31%0.65%100%
ComairTYSATL41.28%0.14%5.18%1.21%
ComairJFKMLB41.28%1.07%0%100%
ComairJFKPHL41.28%1.07%2.24%100%
American EagleDFWMTJ44.6%5.16%0.01%44.44%
AmericanHNLSTL410.03%0.08%1.19%100%
DeltaJFKSJU49.32%1.07%0.19%3.51%
ATAINDSFO40.88%0.65%1.32%100%
ATAMIAIND40.88%0.69%0.65%57.14%
UnitedTUSORD49.5%0.31%4.12%3.85%
USAirBWIPVD410.93%2.09%0.68%0.97%
SouthwestMDWPDX425.74%1.92%1.04%100%
ComairCAEMCO41.28%0.11%1.97%100%
ATAPIELAX40.88%0.02%3.21%100%
Continental ExpressCLEDAB44.66%1.49%0.01%100%
USAirGSODCA410.93%0.14%1.94%100%
ComairMLBJFK41.28%0%1.07%100%
JetblueOAKATL41.4%1.47%5.18%28.57%
ComairPWMLGA41.28%0.1%2.21%57.14%
USAirMDTMCO410.93%0.17%1.97%100%
Continental ExpressCLEPBI34.66%1.49%0.4%21.43%
ComairFWAATL31.28%0.01%5.18%100%
America WestLASMSY32.83%3.22%0.94%5.36%
DeltaLASPDX39.32%3.22%1.04%1.02%
SouthwestPVDLAS325.74%0.69%3.22%100%
UnitedSANLAX39.5%1.47%3.21%20%
UnitedBDLDEN39.5%0.63%2.09%100%
ComairFLLMCO31.28%1.05%1.97%1.38%
ComairLEXLGA31.28%0.09%2.21%100%
DeltaPVDCVG39.32%0.69%0.96%42.86%
ComairATLBWI31.28%5.17%2.08%2.75%
ComairATLIAD31.28%5.17%1.13%2.17%
ComairBOSJFK31.28%1.68%1.07%3.85%
SouthwestHOUSLC325.74%0.99%0.79%100%
ComairIADJAX31.28%1.14%0.46%100%
Atlantic SoutheastMOBATL34.57%0.04%5.18%3.85%
Continental ExpressSBNCLE34.66%0.01%1.49%100%
UnitedSFOMRY39.5%1.31%0%100%
JetblueBOSLAS31.4%1.68%3.22%27.27%
ContinentalCLEIND32.07%1.49%0.65%2.91%
Continental ExpressCLESBN34.66%1.49%0.01%100%
UnitedLAXJFK39.5%3.21%1.07%0.62%
AmericanSMFORD310.03%1.04%4.12%2.11%
AlaskaANCLAX32.45%0.22%3.21%100%
America WestATLPHX32.83%5.17%3.62%6.52%
DeltaORDFLL39.32%4.12%1.05%1.49%
USAirSTXCLT310.93%0%2.06%100%
UnitedBILDEN39.5%0%2.09%100%
JetblueJFKPSE31.4%1.07%0%100%
UnitedMRYSFO39.5%0%1.32%100%
SouthwestRSWPHL325.74%0.34%2.24%5.45%
USAirCLTSTX310.93%2.06%0%100%
ComairCVGHTS31.28%0.95%0%100%
SouthwestLASPVD325.74%3.22%0.68%100%
AmericanPHLSTL310.03%2.23%1.19%4.23%
NorthwestPHLMEM39.74%2.23%0.65%100%
USAirALBMCO310.93%0.32%1.97%2.63%
UnitedBNAORD39.5%1.24%4.12%3.16%
DeltaFLLIND39.32%1.05%0.65%17.65%
DeltaFLLTPA39.32%1.05%1.41%0.8%
America WestMCILAS32.83%1.18%3.22%1.32%
UnitedDENBNA39.5%2.08%1.24%100%
SouthwestHOUJAX325.74%0.99%0.46%100%
DeltaATLSYR39.32%5.17%0.17%75%
Continental ExpressDENIAH34.66%2.08%1.92%2.54%
Continental ExpressPBICLE34.66%0.4%1.49%20%
Continental ExpressIAHHDN34.66%1.92%0%100%
ComairLEXATL31.28%0.09%5.18%1.8%
AmericanMSYBOS310.03%0.95%1.68%100%
ComairIADATL31.28%1.14%5.18%2.05%
ContinentalCLESRQ32.07%1.49%0.06%33.33%
ComairCVGMYR31.28%0.95%0.18%100%
ComairPWMCVG31.28%0.1%0.96%100%
UnitedSFOAUS39.5%1.31%0.61%100%
UnitedSJCLAX39.5%1.11%3.21%0.61%
ComairTOLATL31.28%0.01%5.18%100%
ContinentalHOUIAH32.07%0.99%1.92%100%
ContinentalMKEIAH32.07%0.33%1.92%7.14%
UnitedORDORF39.5%4.12%0.26%100%
AmericanOMASTL310.03%0.27%1.19%3.7%
DeltaTPADFW39.32%1.42%5.16%1.74%
ComairBOSDCA31.28%1.68%1.94%1.42%
ContinentalIAHHOU32.07%1.92%0.99%100%
ContinentalIAHSAN32.07%1.92%1.47%100%
DeltaINDFLL39.32%0.65%1.05%16.67%
ContinentalEWRMHT32.07%1.49%0.47%7.5%
ComairTPACVG31.28%1.42%0.96%6.52%
DeltaGRRATL39.32%0.15%5.18%33.33%
SouthwestPHLRSW325.74%2.23%0.34%7.5%
USAirEYWFLL310.93%0%1.05%100%
UnitedLAXSLC39.5%3.21%0.79%1.47%
USAirMYRPHL310.93%0.18%2.24%100%
DeltaSFOJFK39.32%1.31%1.07%1.99%
UnitedDENCLT39.5%2.08%2.06%2.38%
Continental ExpressHDNIAH34.66%0%1.92%100%
ComairJFKIAD31.28%1.07%1.13%100%
AmericanMIAIND310.03%0.69%0.65%42.86%
DeltaSNACVG39.32%0.56%0.96%100%
Atlantic SoutheastATLMOB34.57%5.17%0.04%4.69%
ComairSTLJFK31.28%1.19%1.07%9.68%
AmericanAUSSTL310.03%0.61%1.19%100%
ComairMHTATL31.28%0.47%5.18%100%
ComairBOSJAX31.28%1.68%0.46%100%
UnitedDENBDL39.5%2.08%0.63%100%
ContinentalGSOEWR32.07%0.14%1.5%5.08%
ComairIADJFK31.28%1.14%1.07%100%
ComairJFKBOS31.28%1.07%1.68%3.9%
American EaglePWMLGA34.6%0.1%2.21%42.86%
ContinentalSRQCLE32.07%0.06%1.49%33.33%
ComairATLPIT31.28%5.17%1.32%3%
ContinentalIAHMKE32.07%1.92%0.33%8.82%
JetblueLASBOS31.4%3.22%1.68%37.5%
America WestORDLAS32.83%4.12%3.22%0.7%
ComairATLMHT31.28%5.17%0.47%100%
ComairATLMLB31.28%5.17%0%100%
NorthwestIADMEM39.74%1.14%0.65%100%
UnitedSLCLAX39.5%0.8%3.21%1.81%
AmericanSNASEA310.03%0.56%2.03%100%
UnitedBURDEN39.5%0.56%2.09%100%
Continental ExpressCRWIAH34.66%0.01%1.92%100%
ComairSHVATL31.28%0.12%5.18%100%
NorthwestSRQMSP39.74%0.06%2.83%100%
Continental ExpressEWRORD34.66%1.49%4.12%0.88%
USAirPITTOL310.93%1.31%0.01%100%
AmericanINDMIA310.03%0.65%0.69%42.86%
USAirLGABWI310.93%2.21%2.08%100%
UnitedORFORD39.5%0.26%4.12%100%
ATAEWRSFO30.88%1.49%1.32%2.78%
DeltaLAXSFO39.32%3.21%1.32%0.94%
ContinentalLGAMCO32.07%2.21%1.97%3.7%
USAirMYRPIT310.93%0.18%1.32%100%
DeltaSJCSLC39.32%1.11%0.79%100%
USAirTOLPIT310.93%0.01%1.32%100%
ComairROAATL31.28%0.05%5.18%2.48%
SouthwestRSWISP325.74%0.34%0.38%100%
ComairATLFWA31.28%5.17%0.01%100%
ContinentalEWRPIT32.07%1.49%1.32%1.74%
USAirDCAGSO310.93%1.94%0.14%100%
Continental ExpressIAHCRW34.66%1.92%0.01%100%
America WestPHXATL32.83%3.62%5.18%3.75%
SouthwestAUSMDW325.74%0.61%1.92%100%
ComairCVGDFW31.28%0.95%5.16%15.79%
ContinentalMDWCLE32.07%1.92%1.49%0.98%
DeltaSLCSFO39.32%0.8%1.32%20%
DeltaDFWPHX39.32%5.16%3.62%0.81%
ComairATLSHV31.28%5.17%0.12%100%
ContinentalEWRBNA32.07%1.49%1.24%4.55%
JetblueEWRTPA31.4%1.49%1.41%6.12%
DeltaRSWIND39.32%0.34%0.65%8.33%
American EagleLGAPWM34.6%2.21%0.09%37.5%
UnitedORDTUS39.5%4.12%0.31%3.16%
DeltaATLGRR39.32%5.17%0.15%37.5%
AmericanBOSMSY310.03%1.68%0.94%100%
AmericanDFWSJU310.03%5.16%0.19%100%
ComairMLBATL31.28%0%5.18%100%
ContinentalSANIAH32.07%1.47%1.92%100%
ComairATLMKE31.28%5.17%0.33%7.5%
ComairHTSCVG31.28%0%0.96%100%
ContinentalMHTEWR32.07%0.47%1.5%9.38%
AmericanSTLOMA310.03%1.19%0.27%3.53%
DeltaCVGSNA39.32%0.95%0.56%100%
ComairMCOSAT31.28%1.97%0.54%6.98%
NorthwestMEMRSW39.74%0.65%0.34%100%
Continental ExpressVCTIAH34.66%0%1.92%100%
ComairATLTOL31.28%5.17%0.01%100%
JetbluePSEJFK31.4%0%1.07%100%
Continental ExpressEWRDSM34.66%1.49%0.07%100%
USAirFLLEYW310.93%1.05%0%100%
ContinentalMCOLGA32.07%1.97%2.21%3.7%
Continental ExpressIAHVCT34.66%1.92%0%100%
ComairATLCVG31.28%5.17%0.96%3.66%
ComairBGRBOS31.28%0.03%1.68%3.66%
UnitedDENBIL39.5%2.08%0%100%
ComairCVGTPA31.28%0.95%1.41%7.5%
DeltaSYRCVG39.32%0.17%0.96%17.65%
ComairDFWCVG31.28%5.16%0.96%20%
Atlantic SoutheastCAEATL34.57%0.11%5.18%1.17%
AmericanFLLEWR310.03%1.05%1.5%3.16%
Atlantic SoutheastATLCAE34.57%5.17%0.11%1.18%
ContinentalCLEATL22.07%1.49%5.18%1.31%
NorthwestDTWSJU29.74%2.36%0.19%100%
DeltaLASMSY29.32%3.22%0.94%3.57%
AmericanOMAORD210.03%0.27%4.12%3.03%
DeltaABQCVG29.32%0.8%0.96%100%
DeltaBHMJAN29.32%0.35%0.1%100%
DeltaORDMCO29.32%4.12%1.97%0.62%
ComairATLCLT21.28%5.17%2.06%0.79%
ComairATLTYS21.28%5.17%0.13%0.62%
ContinentalEWRCHS22.07%1.49%0.14%4.35%
AmericanEWRFLL210.03%1.49%1.05%2%
NorthwestTPAFNT29.74%1.42%0.02%100%
DeltaBOSDFW29.32%1.68%5.16%1.18%
DeltaDFWPDX29.32%5.16%1.04%2.15%
SouthwestOKCMCO225.74%0.26%1.97%100%
UnitedONTORD29.5%0.77%4.12%100%
ComairORFMCO21.28%0.26%1.97%3.85%
DeltaANCSEA29.32%0.22%2.03%0.63%
AmericanLAXSAT210.03%3.21%0.54%5.71%
DeltaMSYSLC29.32%0.95%0.79%100%
USAirPITBGM210.93%1.31%0%100%
SouthwestPITTPA225.74%1.31%1.41%2.02%
DeltaTPAPBI29.32%1.42%0.4%1.96%
ComairLEXTPA21.28%0.09%1.41%100%
Continental ExpressMYRCLE24.66%0.18%1.49%100%
AmericanRDULGA210.03%0.71%2.21%2.94%
ComairSBNATL21.28%0.01%5.18%100%
SouthwestBWIRSW225.74%2.09%0.34%100%
ContinentalEWRMYR22.07%1.49%0.18%25%
DeltaFLLMIA29.32%1.05%0.69%100%
AmericanSLCSTL210.03%0.8%1.19%2.27%
AmericanBOSAUS210.03%1.68%0.61%100%
NorthwestMSPAUS29.74%2.83%0.61%100%
USAirTRICLT210.93%0.16%2.06%100%
UnitedJFKSJU29.5%1.07%0.19%1.75%
SouthwestMHTFLL225.74%0.47%1.05%100%
Atlantic SoutheastGRRCVG24.57%0.15%0.96%4.35%
ContinentalMHTCLE22.07%0.47%1.49%4.08%
ContinentalBNAEWR22.07%1.24%1.5%3.28%
Continental ExpressCLEJAX24.66%1.49%0.46%100%
ComairCVGPWM21.28%0.95%0.09%100%
DeltaPDXDFW29.32%1.04%5.16%1.98%
DeltaPNSATL29.32%0.06%5.18%10.53%
DeltaSFOLAX29.32%1.31%3.21%0.68%
JetblueTPAEWR21.4%1.42%1.5%4.44%
ComairMCORSW21.28%1.97%0.34%16.67%
ComairATLTLH21.28%5.17%0.08%0.79%
Continental ExpressORDEWR24.66%4.12%1.5%0.51%
AmericanSNAORD210.03%0.56%4.12%1.24%
UnitedDENMTJ29.5%2.08%0.01%100%
ATASJUMIA20.88%0.19%0.69%100%
NorthwestMEMPBI29.74%0.65%0.4%100%
USAirPITCAK210.93%1.31%0.01%100%
NorthwestFNTTPA29.74%0.02%1.41%100%
DeltaJANDFW29.32%0.1%5.16%9.09%
UnitedMTJDEN29.5%0.01%2.09%100%
ComairATLSBN21.28%5.17%0.01%100%
UnitedJFKLAX29.5%1.07%3.21%0.41%
ContinentalMSPCLE22.07%2.83%1.49%1.63%
AmericanPDXSJC210.03%1.04%1.11%0.9%
Continental ExpressRICORF24.66%0.27%0.26%100%
UnitedTPALAX29.5%1.42%3.21%25%
SouthwestPVDFLL225.74%0.69%1.05%33.33%
NorthwestBILJAC29.74%0%0.02%100%
SouthwestHRLAUS225.74%0.05%0.61%100%
ComairJFKRDU21.28%1.07%0.71%4.55%
ComairRSWMCO21.28%0.34%1.97%33.33%
ComairATLICT21.28%5.17%0.05%100%
ComairATLTRI21.28%5.17%0.16%0.37%
Atlantic SoutheastBQKATL24.57%0%5.18%100%
ContinentalCHSEWR22.07%0.14%1.5%4.65%
AmericanKOALAX210.03%0.01%3.21%100%
USAirMCORDU210.93%1.97%0.71%2.33%
ComairMKEATL21.28%0.33%5.18%5.88%
USAirCLTTRI210.93%2.06%0.16%100%
USAirMSYBWI210.93%0.95%2.08%3.64%
DeltaPDXLAX29.32%1.04%3.21%0.84%
AmericanRNOSAN210.03%0.58%1.47%66.67%
DeltaSFODFW29.32%1.31%5.16%0.78%
ComairJAXBOS21.28%0.46%1.68%100%
ComairJFKCLT21.28%1.07%2.06%100%
AlaskaLAXANC22.45%3.21%0.22%100%
NorthwestMCIMEM29.74%1.18%0.65%100%
USAirMCOALB210.93%1.97%0.32%1.67%
USAirMCOPVD210.93%1.97%0.68%0.85%
SouthwestSLCMDW225.74%0.8%1.92%100%
USAirSYRMCO210.93%0.17%1.97%9.52%
AmericanDFWDSM210.03%5.16%0.07%2.17%
UnitedLAXTPA29.5%3.21%1.41%28.57%
ContinentalSLCEWR22.07%0.8%1.5%66.67%
AmericanSTLABQ210.03%1.19%0.8%3.64%
Atlantic SoutheastCVGGRR24.57%0.95%0.15%4.26%
ContinentalRICEWR22.07%0.27%1.5%3.57%
American EagleBWIORD24.6%2.09%4.12%0.76%
ContinentalMEMIAH22.07%0.65%1.92%1.33%
ComairBOSBGR21.28%1.68%0.03%2.56%
ComairBOSORF21.28%1.68%0.26%100%
ContinentalBTRIAH22.07%0.08%1.92%3.23%
DeltaDFWSFO29.32%5.16%1.32%0.66%
NorthwestMCOFNT29.74%1.97%0.02%100%
ContinentalEWRRIC22.07%1.49%0.27%2.94%
NorthwestMKEPHX29.74%0.33%3.62%2.25%
UnitedANCORD29.5%0.22%4.12%100%
USAirBUFMCO210.93%0.36%1.97%3.64%
ContinentalJAXPNS22.07%0.46%0.06%100%
DeltaJFKATL29.32%1.07%5.18%13.33%
ComairMSYCVG21.28%0.95%0.96%2.56%
ContinentalSFOCLE22.07%1.31%1.49%100%
DeltaATLPNS29.32%5.17%0.06%9.52%
ComairCVGMSY21.28%0.95%0.94%2.53%
DeltaPDXLAS29.32%1.04%3.22%0.75%
AmericanSEARNO210.03%2.03%0.58%0.78%
AmericanSJUEWR210.03%0.19%1.5%66.67%
SouthwestHOUFLL225.74%0.99%1.05%100%
Continental ExpressTLHIAH24.66%0.08%1.92%100%
USAirBWITPA210.93%2.09%1.41%1.14%
AmericanORDOMA210.03%4.12%0.27%2.99%
ComairTPALEX21.28%1.42%0.09%100%
Atlantic SoutheastATLBQK24.57%5.17%0%100%
ATAMIASJU20.88%0.69%0.19%33.33%
ComairATLCLE21.28%5.17%1.49%1.24%
USAirCAKPIT210.93%0.01%1.32%100%
AmericanLGAMDW210.03%2.21%1.92%1.08%
Continental ExpressIAHTLH24.66%1.92%0.08%100%
ComairLEXMCO21.28%0.09%1.97%100%
ComairMCORIC21.28%1.97%0.27%100%
AmericanPDXSTL210.03%1.04%1.19%100%
ComairSATMCO21.28%0.54%1.97%3.77%
Continental ExpressCLEMYR24.66%1.49%0.18%100%
ComairCVGBUF21.28%0.95%0.36%66.67%
ComairILMCVG21.28%0.04%0.96%100%
USAirPITMYR210.93%1.31%0.18%100%
UnitedLNKORD29.5%0%4.12%100%
ContinentalIAHBTR22.07%1.92%0.08%3.13%
AmericanMDWLGA210.03%1.92%2.21%1.08%
ATAPIELGA20.88%0.02%2.21%100%
ComairRICMCO21.28%0.27%1.97%100%
ComairCVGILM21.28%0.95%0.04%100%
AmericanLAXKOA210.03%3.21%0.01%100%
DeltaORFCVG29.32%0.26%0.96%13.33%
ATASFOEWR20.88%1.31%1.5%2.11%
USAirBGMPIT210.93%0%1.32%100%
UnitedDENLNK29.5%2.08%0%100%
AmericanDSMDFW210.03%0.07%5.16%2.15%
ComairJFKORD21.28%1.07%4.12%66.67%
ComairMSPSLC21.28%2.83%0.79%1.13%
ComairSLCOKC21.28%0.8%0.26%100%
NorthwestMEMOMA29.74%0.65%0.27%100%
UnitedMIALGA29.5%0.69%2.21%2.53%
ContinentalMYREWR22.07%0.18%1.5%25%
ComairATLIAH21.28%5.17%1.92%1.72%
ComairBWIJFK21.28%2.09%1.07%3.77%
ContinentalDFWCLE22.07%5.16%1.49%0.88%
AmericanLASSNA210.03%3.22%0.56%0.77%
ATALGAPIE20.88%2.21%0.02%100%
AmericanDTWMIA210.03%2.36%0.69%1.44%
NorthwestFNTMCO29.74%0.02%1.97%100%
SouthwestLASMCO225.74%3.22%1.97%66.67%
UnitedSJUJFK29.5%0.19%1.07%1.75%
AmericanCMHSTL210.03%0.5%1.19%3.77%
American EagleORDBWI24.6%4.12%2.08%0.72%
NorthwestAUSMSP29.74%0.61%2.83%100%
Continental ExpressDSMEWR24.66%0.07%1.5%100%
NorthwestGRRTPA29.74%0.15%1.41%100%
AmericanMIADTW210.03%0.69%2.37%1.61%
ContinentalATLCLE22.07%5.17%1.49%1.24%
ContinentalBWIEWR22.07%2.09%1.5%4%
ComairIADMLB21.28%1.14%0%100%
ContinentalIAHMEM22.07%1.92%0.65%1.5%
NorthwestJACBIL29.74%0.02%0%100%
SouthwestMCOOKC225.74%1.97%0.26%100%
ComairORFBOS21.28%0.26%1.68%100%
USAirBOSRIC210.93%1.68%0.27%100%
ContinentalCLEMHT22.07%1.49%0.47%5%
ContinentalCLESFO22.07%1.49%1.32%100%
UnitedIADDFW29.5%1.14%5.16%1.49%
ComairMLBIAD21.28%0%1.13%100%
AmericanSTLCMH210.03%1.19%0.5%2.78%
AmericanSTLOKC210.03%1.19%0.26%2.94%
ComairICTATL21.28%0.05%5.18%100%
AmericanOKCSTL210.03%0.26%1.19%2.9%
NorthwestBZNDTW19.74%0.02%2.37%100%
ComairCVGPHF11.28%0.95%0%100%
Continental ExpressEWRMDW14.66%1.49%1.92%0.85%
UnitedLAXSNA19.5%3.21%0.56%100%
ComairMLBCVG11.28%0%0.96%100%
NorthwestMSPFNT19.74%2.83%0.02%100%
SouthwestSEABWI125.74%2.03%2.08%100%
AmericanSEAJFK110.03%2.03%1.07%2.17%
AmericanSTLPDX110.03%1.19%1.04%100%
Atlantic SoutheastATLHTS14.57%5.17%0%100%
Atlantic SoutheastFLOATL14.57%0%5.18%100%
Continental ExpressIAHSJT14.66%1.92%0.06%100%
Continental ExpressJAXCLE14.66%0.46%1.49%100%
Continental ExpressMDWEWR14.66%1.92%1.5%0.83%
American EagleORDLSE14.6%4.12%0%100%
ContinentalPVDIAH12.07%0.69%1.92%100%
ComairATLHPN11.28%5.17%0.09%100%
USAirEWRFLL110.93%1.49%1.05%1%
JetblueEWRRSW11.4%1.49%0.34%2.27%
AmericanEWRSTL110.03%1.49%1.19%1.85%
UnitedAUSIAD19.5%0.61%1.13%100%
ComairBOSBWI11.28%1.68%2.08%2.38%
DeltaDFWBOS19.32%5.16%1.68%0.62%
NorthwestEGEDTW19.74%0.01%2.37%100%
ComairPNSCVG11.28%0.06%0.96%100%
ComairCVGVPS11.28%0.95%0.12%100%
UnitedIADROC19.5%1.14%0.21%100%
ComairOKCSLC11.28%0.26%0.79%100%
USAirPITSBN110.93%1.31%0.01%100%
SouthwestTPALAX125.74%1.42%3.21%12.5%
American EagleCMHDFW14.6%0.5%5.16%0.83%
USAirDCAMYR110.93%1.94%0.18%100%
Atlantic SoutheastOKCTUL14.57%0.26%0.29%100%
USAirTPAIAD110.93%1.42%1.13%0.62%
ComairVPSATL11.28%0.11%5.18%0.27%
ComairABYATL11.28%0%5.18%16.67%
USAirBWIFLL110.93%2.09%1.05%0.76%
AmericanCOSLAS110.03%0.12%3.22%100%
America WestMSYLAS12.83%0.95%3.22%3.03%
Continental ExpressONTIAH14.66%0.77%1.92%8.33%
UnitedATLMIA19.5%5.17%0.69%0.24%
UnitedDENPIT19.5%2.08%1.32%0.85%
SouthwestFLLBDL125.74%1.05%0.63%1.22%
ComairJFKDCA11.28%1.07%1.94%3.45%
UnitedSFOANC19.5%1.31%0.22%100%
ComairCVGDAB11.28%0.95%0.01%100%
ComairCVGMLB11.28%0.95%0%100%
American EagleDFWMEM14.6%5.16%0.65%1.37%
DeltaLASSNA19.32%3.22%0.56%0.38%
DeltaLAXPDX19.32%3.21%1.04%0.39%
UnitedLGAMIA19.5%2.21%0.69%1.16%
DeltaSLCBWI19.32%0.8%2.08%2.56%
DeltaSLCIAD19.32%0.8%1.13%100%
ComairSLCSEA11.28%0.8%2.03%0.69%
NorthwestTVCDTW19.74%0%2.37%100%
Atlantic SoutheastATLFLO14.57%5.17%0%100%
DeltaEWRSLC19.32%1.49%0.79%50%
American EagleORDSYR14.6%4.12%0.17%1.72%
America WestPSPPHX12.83%0.07%3.62%100%
USAirRSWLGA110.93%0.34%2.21%50%
SouthwestSTLPBI125.74%1.19%0.4%100%
ComairALBCVG11.28%0.32%0.96%3.03%
Atlantic SoutheastDFWMAF14.57%5.16%0.12%0.93%
USAirMIABWI110.93%0.69%2.08%9.09%
JetbluePBIEWR11.4%0.4%1.5%3.7%
ComairSAVATL11.28%0.12%5.18%0.61%
ComairDAYTPA11.28%0.12%1.41%100%
Continental ExpressDROIAH14.66%0%1.92%100%
Continental ExpressMTJLAX14.66%0.01%3.21%100%
ComairPFNCVG11.28%0.23%0.96%100%
ComairPFNMCO11.28%0.23%1.97%100%
ContinentalROCEWR12.07%0.21%1.5%2.13%
Atlantic SoutheastSHVDFW14.57%0.12%5.16%0.28%
ComairCVGAUS11.28%0.95%0.61%4.55%
Continental ExpressEWRSRQ14.66%1.49%0.06%4.17%
ContinentalJFKIAH12.07%1.07%1.92%100%
ComairMYRCVG11.28%0.18%0.96%100%
DeltaPDXSEA19.32%1.04%2.03%3.33%
DeltaSLCSNA19.32%0.8%0.56%100%
AmericanSTLDEN110.03%1.19%2.09%10%
DeltaBWISLC19.32%2.09%0.79%2.63%
USAirCLEBWI110.93%1.49%2.08%0.48%
ComairCLTATL11.28%2.06%5.18%0.37%
DeltaDABATL19.32%0.01%5.18%50%
Continental ExpressIAHILE14.66%1.92%0.12%100%
NorthwestINDDCA19.74%0.65%1.94%3.57%
UnitedORDMKE19.5%4.12%0.33%2.13%
UnitedORDONT19.5%4.12%0.77%100%
America WestPHXCMH12.83%3.62%0.5%3.33%
ContinentalCLTIAH12.07%2.06%1.92%0.46%
ContinentalEWRROC12.07%1.49%0.21%1.54%
DeltaSNALAS19.32%0.56%3.22%0.35%
SouthwestCLEMCO125.74%1.49%1.97%0.96%
DeltaDFWDEN19.32%5.16%2.09%0.35%
DeltaDFWSAT19.32%5.16%0.54%0.33%
ComairCLTJFK11.28%2.06%1.07%100%
DeltaCVGMEM19.32%0.95%0.65%5.88%
Continental ExpressIAHABI14.66%1.92%0.09%100%
Continental ExpressIAHONT14.66%1.92%0.77%8.33%
ComairMCOORF11.28%1.97%0.26%1.82%
UnitedORDHNL19.5%4.12%0.08%2.5%
USAirPHLSTT110.93%2.23%0.02%100%
AmericanRDUBOS110.03%0.71%1.68%50%
DeltaATLDAB19.32%5.17%0.01%50%
DeltaATLGPT19.32%5.17%0.08%0.42%
USAirFLLMCO110.93%1.05%1.97%0.46%
Atlantic SoutheastTXKLFT14.57%0.06%0.05%100%
Continental ExpressDFWGUC14.66%5.16%0%100%
NorthwestFARLAS19.74%0.02%3.22%100%
DeltaGPTATL19.32%0.08%5.18%0.42%
ContinentalIAHJFK12.07%1.92%1.07%100%
NorthwestLASFSD19.74%3.22%0.01%100%
NorthwestMCOIND19.74%1.97%0.65%0.75%
UnitedSFOMFR19.5%1.31%0%100%
ComairATLBNA11.28%5.17%1.24%1.25%
JetblueATLOAK11.4%5.17%1.47%9.09%
USAirMCOBWI110.93%1.97%2.08%0.41%
ComairSYRATL11.28%0.17%5.18%100%
DeltaMCOORD19.32%1.97%4.12%0.29%
SouthwestSLCHOU125.74%0.8%0.99%100%
Atlantic SoutheastCRPATL14.57%0.05%5.18%100%
ComairCVGRSW11.28%0.95%0.34%16.67%
NorthwestDTWBZN19.74%2.36%0.02%100%
NorthwestDTWTVC19.74%2.36%0%100%
DeltaJFKLAS19.32%1.07%3.22%1.06%
ComairMYRORD11.28%0.18%4.12%100%
ComairPBIMCO11.28%0.4%1.97%7.14%
USAirPITCRW110.93%1.31%0.01%100%
AmericanSJUORD110.03%0.19%4.12%0.77%
AmericanSTLEWR110.03%1.19%1.5%1.47%
AmericanSTLSLC110.03%1.19%0.79%1.14%
ComairBOSGSO11.28%1.68%0.14%100%
ContinentalIAHBRO12.07%1.92%0.03%1.06%
NorthwestMCOGRR19.74%1.97%0.15%100%
ComairMIATLH11.28%0.69%0.08%100%
SouthwestPHXPIT125.74%3.62%1.32%0.96%
ComairRSWCVG11.28%0.34%0.96%16.67%
UnitedSFOHNL19.5%1.31%0.08%2.17%
SouthwestBDLFLL125.74%0.63%1.05%1.35%
DeltaCVGMHT19.32%0.95%0.47%10%
Continental ExpressIAHMCO14.66%1.92%1.97%11.11%
NorthwestINDSEA19.74%0.65%2.03%100%
ComairTLHMCO11.28%0.08%1.97%100%
ComairAUSCVG11.28%0.61%0.96%6.25%
ComairCVGROC11.28%0.95%0.21%100%
American EagleDFWCMH14.6%5.16%0.5%0.83%
SouthwestRNOHOU125.74%0.58%0.99%100%
SouthwestRNOSAN125.74%0.58%1.47%33.33%
USAirSBNPIT110.93%0.01%1.32%100%
DeltaDENDFW19.32%2.08%5.16%0.4%
DeltaDENJFK19.32%2.08%1.07%2.56%
ContinentalIAHPVD12.07%1.92%0.68%100%
NorthwestLASDSM19.74%3.22%0.07%100%
ComairSBASLC11.28%0.01%0.79%100%
ComairATLSAV11.28%5.17%0.12%0.6%
ContinentalEWRPHX12.07%1.49%3.62%100%
NorthwestGRRMCO19.74%0.15%1.97%100%
Continental ExpressILEIAH14.66%0.12%1.92%100%
[
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "DCA",
    "flight_count": 1903,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.8880074661689221
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "LGA",
    "flight_count": 1901,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8954309938765898
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "LGA",
    "flight_count": 1033,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8509060955518946
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "BOS",
    "flight_count": 1031,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.858451290591174
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 821,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.945852534562212
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "PFN",
    "origin": "ATL",
    "flight_count": 787,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0022881038897766127,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "PFN",
    "flight_count": 776,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0022562038355465205,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 745,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.9406565656565656
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AGS",
    "flight_count": 716,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002192403727086336,
    "carriers as a percentage of route": 0.99860529986053
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AGS",
    "origin": "ATL",
    "flight_count": 696,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9985652797704447
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CHA",
    "flight_count": 670,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0020213034362158416,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHA",
    "origin": "ATL",
    "flight_count": 670,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002018403431285833,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 661,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8070818070818071
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AVL",
    "origin": "ATL",
    "flight_count": 657,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CSG",
    "flight_count": 654,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0018966032242254812,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CSG",
    "origin": "ATL",
    "flight_count": 651,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.001887903209435456,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "AVL",
    "flight_count": 643,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LAS",
    "flight_count": 641,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.824967824967825
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 637,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8083756345177665
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 556,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5181733457595527
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 552,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7489823609226595
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MSY",
    "flight_count": 536,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TRI",
    "origin": "ATL",
    "flight_count": 534,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9981308411214953
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "TRI",
    "flight_count": 534,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.996268656716418
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 516,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.4966313763233879
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MCI",
    "flight_count": 513,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "STL",
    "origin": "ATL",
    "flight_count": 513,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9884393063583815
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "STL",
    "flight_count": 510,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9883720930232558
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MGM",
    "origin": "ATL",
    "flight_count": 504,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.001461602484724224,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "MDW",
    "flight_count": 504,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MGM",
    "flight_count": 500,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014500024650041905,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "PHX",
    "flight_count": 498,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8783068783068783
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ACT",
    "flight_count": 494,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0014326024354241402,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GNV",
    "origin": "ATL",
    "flight_count": 493,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0014297024304941318,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ACT",
    "origin": "DFW",
    "flight_count": 492,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0014268024255641235,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MSP",
    "flight_count": 491,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SAN",
    "flight_count": 482,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DFW",
    "flight_count": 482,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8500881834215167
  },
  {
    "nickname": "American Eagle",
    "destination": "TYR",
    "origin": "DFW",
    "flight_count": 482,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013978023762640397,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TYR",
    "flight_count": 480,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013920023664040228,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "OAK",
    "flight_count": 479,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "JFK",
    "flight_count": 471,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9711340206185567
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "LAX",
    "flight_count": 471,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9612244897959183
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SAN",
    "flight_count": 470,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.9251968503937008
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GNV",
    "flight_count": 469,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ORD",
    "flight_count": 462,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8619402985074627
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DTW",
    "flight_count": 461,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SPS",
    "flight_count": 457,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013253022530138301,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SPS",
    "origin": "DFW",
    "flight_count": 456,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013224022480838218,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "PHX",
    "flight_count": 453,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8191681735985533
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "LAS",
    "flight_count": 451,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9111111111111111
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SEA",
    "flight_count": 449,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CLL",
    "flight_count": 448,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013166022382238049,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "LAX",
    "flight_count": 446,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.901010101010101
  },
  {
    "nickname": "American Eagle",
    "destination": "CLL",
    "origin": "DFW",
    "flight_count": 445,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013079022234337798,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "HOU",
    "flight_count": 442,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "BWI",
    "flight_count": 441,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9910112359550561
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "MSP",
    "flight_count": 435,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "OAK",
    "flight_count": 433,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LAW",
    "origin": "DFW",
    "flight_count": 429,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012441021149735955,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "SAN",
    "flight_count": 428,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "SEA",
    "flight_count": 424,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.7723132969034608
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LAW",
    "flight_count": 423,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012267020853935452,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BOS",
    "flight_count": 423,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9155844155844156
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SJC",
    "flight_count": 419,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.8821052631578947
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "LAX",
    "flight_count": 418,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7916666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "LAX",
    "flight_count": 417,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ORD",
    "flight_count": 416,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7074829931972789
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "STL",
    "flight_count": 413,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "LAS",
    "flight_count": 413,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9672131147540983
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "ONT",
    "flight_count": 412,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "MSP",
    "flight_count": 412,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "ABQ",
    "flight_count": 411,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.6586538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "ONT",
    "flight_count": 411,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "PHL",
    "flight_count": 409,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.910913140311804
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "PVD",
    "flight_count": 409,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.9903147699757869
  },
  {
    "nickname": "United",
    "destination": "DCA",
    "origin": "ORD",
    "flight_count": 408,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7404718693284936
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "ORD",
    "flight_count": 408,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7351351351351352
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DCA",
    "flight_count": 408,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7246891651865008
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DEN",
    "flight_count": 407,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7065972222222222
  },
  {
    "nickname": "Delta",
    "destination": "HSV",
    "origin": "ATL",
    "flight_count": 406,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8136272545090181
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "OAK",
    "flight_count": 405,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "HSV",
    "flight_count": 403,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 0.7964426877470355
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ISP",
    "flight_count": 401,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SAN",
    "flight_count": 400,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.8403361344537815
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MCO",
    "flight_count": 400,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SMF",
    "flight_count": 396,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LGA",
    "flight_count": 392,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.6125
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "IAD",
    "flight_count": 391,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "BWI",
    "flight_count": 387,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MYR",
    "flight_count": 387,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "DTW",
    "flight_count": 386,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9974160206718347
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "VPS",
    "flight_count": 385,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0011687019867933776,
    "carriers as a percentage of route": 0.9974093264248705
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BUR",
    "flight_count": 384,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.9896907216494846
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "OAK",
    "flight_count": 382,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.9052132701421801
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LAX",
    "flight_count": 382,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7304015296367112
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BNA",
    "flight_count": 381,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "SMF",
    "flight_count": 380,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "HOU",
    "flight_count": 380,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "ONT",
    "flight_count": 380,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.7739307535641547
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MYR",
    "origin": "ATL",
    "flight_count": 374,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "ORD",
    "flight_count": 374,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6161449752883031
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "LAX",
    "flight_count": 374,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9077669902912622
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "LAS",
    "flight_count": 373,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9893899204244032
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "VPS",
    "origin": "ATL",
    "flight_count": 372,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0011310019227032686,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9973190348525469
  },
  {
    "nickname": "American Eagle",
    "destination": "ILE",
    "origin": "DFW",
    "flight_count": 372,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012122020607435032,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8920863309352518
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "MDW",
    "flight_count": 372,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "TPA",
    "flight_count": 371,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9919786096256684
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ILE",
    "flight_count": 370,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.891566265060241
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "RNO",
    "flight_count": 370,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.9390862944162437
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "BUR",
    "flight_count": 367,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "SAN",
    "flight_count": 366,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.8652482269503546
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "DEN",
    "flight_count": 363,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SHV",
    "origin": "DFW",
    "flight_count": 360,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.997229916897507
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "DAL",
    "flight_count": 359,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DEN",
    "flight_count": 357,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9394736842105263
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SHV",
    "flight_count": 356,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 0.9971988795518207
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TPA",
    "flight_count": 355,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "ATL",
    "flight_count": 354,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MHT",
    "flight_count": 351,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SMF",
    "flight_count": 345,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.9031413612565445
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "BWI",
    "flight_count": 343,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LAS",
    "flight_count": 343,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8285024154589372
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "LAS",
    "flight_count": 339,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.904
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "DFW",
    "flight_count": 337,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MSP",
    "flight_count": 335,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.9103260869565217
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "DEN",
    "flight_count": 335,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8459595959595959
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MIA",
    "flight_count": 332,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.7848699763593381
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "AUS",
    "flight_count": 330,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "LAX",
    "flight_count": 330,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5365853658536586
  },
  {
    "nickname": "Delta",
    "destination": "MIA",
    "origin": "ATL",
    "flight_count": 327,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7975609756097561
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "MSP",
    "flight_count": 325,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.9103641456582633
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "BWI",
    "flight_count": 325,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "DHN",
    "flight_count": 324,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0009396015973227155,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "FLL",
    "flight_count": 324,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.9969230769230769
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ONT",
    "flight_count": 323,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.938953488372093
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DHN",
    "origin": "ATL",
    "flight_count": 323,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0009367015923927071,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "PHX",
    "flight_count": 320,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.600375234521576
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "LAS",
    "flight_count": 317,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9188405797101449
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SJC",
    "flight_count": 315,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.8677685950413223
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ORD",
    "flight_count": 315,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8015267175572519
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LAS",
    "flight_count": 314,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7302325581395349
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "ORD",
    "flight_count": 306,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7481662591687042
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LAX",
    "flight_count": 304,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SAT",
    "flight_count": 304,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.9934640522875817
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "JAX",
    "flight_count": 302,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BOS",
    "flight_count": 299,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAT",
    "origin": "DFW",
    "flight_count": 299,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9966666666666667
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "SFO",
    "flight_count": 299,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6937354988399071
  },
  {
    "nickname": "Delta",
    "destination": "JAX",
    "origin": "ATL",
    "flight_count": 298,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "LAS",
    "flight_count": 297,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7122302158273381
  },
  {
    "nickname": "American Eagle",
    "destination": "ABI",
    "origin": "DFW",
    "flight_count": 297,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0008642014691424975,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SAN",
    "flight_count": 297,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "DTW",
    "flight_count": 296,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9456869009584664
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ABI",
    "flight_count": 296,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0008613014642124892,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "BWI",
    "flight_count": 296,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "SEA",
    "flight_count": 295,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.921875
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "DTW",
    "flight_count": 295,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RSW",
    "flight_count": 288,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "ATL",
    "flight_count": 287,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "MSP",
    "flight_count": 287,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "IAD",
    "flight_count": 286,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.5315985130111525
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "LAS",
    "flight_count": 285,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.6900726392251816
  },
  {
    "nickname": "American",
    "destination": "IAD",
    "origin": "LAX",
    "flight_count": 285,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.4634146341463415
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BDL",
    "flight_count": 283,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SFO",
    "flight_count": 282,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.7790055248618785
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "MSP",
    "flight_count": 282,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MDW",
    "flight_count": 282,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PHX",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7871148459383753
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SFO",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "DTW",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ATL",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "MSP",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PIT",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.8949044585987261
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "IAD",
    "flight_count": 281,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MCO",
    "flight_count": 279,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "SMF",
    "flight_count": 279,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "PHL",
    "flight_count": 278,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7554347826086957
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "DEN",
    "flight_count": 277,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8195266272189349
  },
  {
    "nickname": "Alaska",
    "destination": "LAS",
    "origin": "SEA",
    "flight_count": 277,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6579572446555819
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PHL",
    "flight_count": 277,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9111842105263158
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "DTW",
    "flight_count": 276,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DCA",
    "flight_count": 275,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "LGA",
    "flight_count": 275,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.975177304964539
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DFW",
    "flight_count": 275,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6207674943566591
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 274,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.845679012345679
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "LAS",
    "flight_count": 274,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7172774869109948
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "LGA",
    "flight_count": 273,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAH",
    "origin": "DTW",
    "flight_count": 272,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.7727272727272727
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "OAK",
    "flight_count": 271,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.5741525423728814
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "LAS",
    "flight_count": 270,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8940397350993378
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BOS",
    "flight_count": 269,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SMF",
    "flight_count": 269,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.8226299694189603
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "ATL",
    "flight_count": 268,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5995525727069351
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "HOU",
    "flight_count": 268,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MCO",
    "flight_count": 267,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7063492063492064
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MCO",
    "flight_count": 264,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "MSP",
    "flight_count": 263,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.7874251497005988
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "MSP",
    "flight_count": 263,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BWI",
    "flight_count": 262,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "STL",
    "flight_count": 262,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.7024128686327078
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "IAD",
    "flight_count": 261,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.7092391304347826
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "BUR",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BUR",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.7282913165266106
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "CLT",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.966542750929368
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CLT",
    "flight_count": 260,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "GGG",
    "flight_count": 258,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007482012719421624,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "ABQ",
    "flight_count": 258,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "GGG",
    "origin": "DFW",
    "flight_count": 258,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007482012719421624,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "ORD",
    "flight_count": 257,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.747093023255814
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MCO",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9846153846153847
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "LAS",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8152866242038217
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SLC",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.7687687687687688
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BUF",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "FLL",
    "flight_count": 256,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.9696969696969697
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "RDU",
    "flight_count": 255,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 255,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.23765144454799628
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "BWI",
    "flight_count": 255,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CAE",
    "origin": "ATL",
    "flight_count": 254,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9883268482490273
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SEA",
    "flight_count": 253,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.55119825708061
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SFO",
    "flight_count": 252,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.8289473684210527
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "IAD",
    "flight_count": 252,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.4684014869888476
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "IAH",
    "flight_count": 252,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7544910179640718
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SAN",
    "flight_count": 251,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.5363247863247863
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "HOU",
    "flight_count": 250,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 250,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.24061597690086622
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "ORD",
    "flight_count": 250,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5399568034557235
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SMF",
    "flight_count": 249,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.5198329853862212
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "TPA",
    "flight_count": 249,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "CLT",
    "flight_count": 248,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LGA",
    "flight_count": 248,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.3875
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "PIT",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7037037037037037
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "ORD",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "CLT",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SAN",
    "origin": "SEA",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CAE",
    "flight_count": 247,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 0.9724409448818898
  },
  {
    "nickname": "Alaska",
    "destination": "SJC",
    "origin": "SEA",
    "flight_count": 246,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6373056994818653
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "DTW",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9607843137254902
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "IAH",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7205882352941176
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "MSP",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "DFW",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "PIT",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LAX",
    "flight_count": 245,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6940509915014165
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MCO",
    "flight_count": 244,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7507692307692307
  },
  {
    "nickname": "Alaska",
    "destination": "GEG",
    "origin": "SEA",
    "flight_count": 244,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5495495495495496
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DCA",
    "flight_count": 244,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BWI",
    "flight_count": 242,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9958847736625515
  },
  {
    "nickname": "Northwest",
    "destination": "MHT",
    "origin": "DTW",
    "flight_count": 242,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TLH",
    "origin": "ATL",
    "flight_count": 242,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9490196078431372
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "DFW",
    "flight_count": 241,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8060200668896321
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MHT",
    "flight_count": 241,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DEN",
    "flight_count": 241,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.5182795698924731
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "ATL",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "SJC",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SJC",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.6521739130434783
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "DCA",
    "flight_count": 240,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.11199253383107793
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GPT",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008062013705423299,
    "carriers as a percentage of route": 0.9958333333333333
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LGA",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SEA",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.9484126984126984
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TLH",
    "flight_count": 239,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 0.9446640316205533
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GPT",
    "origin": "ATL",
    "flight_count": 238,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0008033013656123215,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.99581589958159
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "PHX",
    "flight_count": 237,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7053571428571429
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "PHX",
    "flight_count": 237,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5969773299748111
  },
  {
    "nickname": "Alaska",
    "destination": "PHX",
    "origin": "SEA",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6178010471204188
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MDW",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8939393939393939
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "ONT",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "CLE",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7687296416938111
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "FLL",
    "flight_count": 236,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.7151515151515152
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "FLL",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MKE",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "JFK",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7298136645962733
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SFO",
    "flight_count": 235,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "DFW",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9137254901960784
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "GEG",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.5587529976019184
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "ORD",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.535632183908046
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "ORD",
    "flight_count": 233,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.38385502471169686
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "LAS",
    "flight_count": 232,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8854961832061069
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SAN",
    "flight_count": 232,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "SJC",
    "flight_count": 232,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "DEN",
    "origin": "PHX",
    "flight_count": 231,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5261958997722096
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SMF",
    "flight_count": 230,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.4801670146137787
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ALB",
    "flight_count": 230,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "DFW",
    "flight_count": 229,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6074270557029178
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DFW",
    "flight_count": 229,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6897590361445783
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LGA",
    "flight_count": 229,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.9786324786324786
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "BWI",
    "flight_count": 226,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "PHX",
    "flight_count": 226,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BOS",
    "flight_count": 226,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9783549783549783
  },
  {
    "nickname": "America West",
    "destination": "SMF",
    "origin": "PHX",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5022321428571429
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "STL",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DCA",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7839721254355401
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "BOS",
    "flight_count": 225,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.7305194805194806
  },
  {
    "nickname": "American Eagle",
    "destination": "SJT",
    "origin": "DFW",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "LAS",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.986784140969163
  },
  {
    "nickname": "Delta",
    "destination": "MDW",
    "origin": "ATL",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "DEN",
    "flight_count": 224,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.4817204301075269
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "LGA",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "PHX",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.49776785714285715
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TYS",
    "origin": "ATL",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6757575757575758
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MDW",
    "flight_count": 223,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SJT",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006467010993918689,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "DCA",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9288702928870293
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "LGA",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.10456900612341027
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "MCO",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7184466019417476
  },
  {
    "nickname": "USAir",
    "destination": "MYR",
    "origin": "CLT",
    "flight_count": 222,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "ELP",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.694006309148265
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "DTW",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "ORD",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7508532423208191
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BOS",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5352798053527981
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MYR",
    "flight_count": 220,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "TYS",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 0.6759259259259259
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LAS",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PDX",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.7041800643086816
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "IAD",
    "flight_count": 219,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "HOU",
    "flight_count": 218,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "PHL",
    "flight_count": 218,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8074074074074075
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SAN",
    "flight_count": 217,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.4636752136752137
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "SAT",
    "flight_count": 216,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "MCI",
    "flight_count": 216,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "ORD",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5752688172043011
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "RIC",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BNA",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "ORD",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7133333333333334
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "TPA",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.7508771929824561
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MCI",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.981651376146789
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "MCO",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.981651376146789
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ATL",
    "flight_count": 214,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8734693877551021
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "ORD",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.46004319654427644
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "DTW",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "MDW",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.9383259911894273
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ABQ",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.34134615384615385
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "TUS",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ABQ",
    "origin": "PHX",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.399624765478424
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "PHX",
    "flight_count": 213,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6513761467889908
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "BNA",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PHX",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5792349726775956
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "FLL",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "MDW",
    "flight_count": 212,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7464788732394366
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "SMF",
    "flight_count": 210,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.9767441860465116
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "LAS",
    "flight_count": 210,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.995260663507109
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SEA",
    "flight_count": 210,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5223880597014925
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "SAT",
    "flight_count": 209,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MHT",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.7908745247148289
  },
  {
    "nickname": "American",
    "destination": "TUS",
    "origin": "DFW",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "PHX",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "DCA",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.985781990521327
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PHX",
    "flight_count": 208,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47380410022779046
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LAX",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.71280276816609
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "BUR",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "VLD",
    "origin": "ATL",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "OAK",
    "origin": "SEA",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.44880174291938996
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "PHL",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8728813559322034
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "LAX",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "DFW",
    "flight_count": 206,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8046875
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "BHM",
    "flight_count": 205,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MKE",
    "flight_count": 205,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "MCO",
    "flight_count": 204,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PHL",
    "flight_count": 204,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "PDX",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.8285714285714286
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "DTW",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9620853080568721
  },
  {
    "nickname": "Northwest",
    "destination": "ATL",
    "origin": "MSP",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.8087649402390438
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PDX",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DCA",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "DEN",
    "flight_count": 203,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "FSM",
    "origin": "DFW",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000585800995861693,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "FSM",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000585800995861693,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "ATL",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "ORD",
    "flight_count": 202,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.46436781609195404
  },
  {
    "nickname": "Northwest",
    "destination": "PDX",
    "origin": "MSP",
    "flight_count": 201,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "OAK",
    "flight_count": 201,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.4258474576271186
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "SEA",
    "flight_count": 200,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.45045045045045046
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "VLD",
    "flight_count": 200,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005800009860016763,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "RDU",
    "flight_count": 199,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "LAX",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BWI",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SLC",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "HOU",
    "flight_count": 198,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.8048780487804879
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BWI",
    "flight_count": 197,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9800995024875622
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "DFW",
    "flight_count": 197,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9800995024875622
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SJC",
    "flight_count": 196,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MDW",
    "flight_count": 196,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DEN",
    "flight_count": 196,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.6877192982456141
  },
  {
    "nickname": "USAir",
    "destination": "CHS",
    "origin": "CLT",
    "flight_count": 195,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SJC",
    "flight_count": 195,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.8369098712446352
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SEA",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MCI",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "STL",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9797979797979798
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "CLT",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5722713864306784
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "PDX",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.754863813229572
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SFO",
    "flight_count": 194,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DFW",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5693215339233039
  },
  {
    "nickname": "American Eagle",
    "destination": "TXK",
    "origin": "DFW",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9414634146341463
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TXK",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006003010205117349,
    "carriers as a percentage of route": 0.9323671497584541
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "RDU",
    "flight_count": 193,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "DFW",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7619047619047619
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "MSP",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SEA",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.47761194029850745
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "DAL",
    "flight_count": 192,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "ORD",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5162162162162162
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BOS",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.46472019464720193
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "LAX",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8059071729957806
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MCO",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LGA",
    "flight_count": 191,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PHX",
    "flight_count": 190,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5149051490514905
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "BWI",
    "flight_count": 190,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "BNA",
    "flight_count": 189,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "DEN",
    "flight_count": 189,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CLT",
    "flight_count": 189,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "EWR",
    "origin": "DTW",
    "flight_count": 188,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.6714285714285714
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ELP",
    "flight_count": 188,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "MCI",
    "flight_count": 188,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.9690721649484536
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "RNO",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "MDW",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ATL",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8095238095238095
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CHS",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "RIC",
    "flight_count": 187,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SLC",
    "flight_count": 186,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.6992481203007519
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "AUS",
    "flight_count": 186,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.7622950819672131
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "EWR",
    "flight_count": 185,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6583629893238434
  },
  {
    "nickname": "Northwest",
    "destination": "BWI",
    "origin": "DTW",
    "flight_count": 185,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "JAX",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SNA",
    "origin": "LAS",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.6456140350877193
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "OAK",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.8070175438596491
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "DEN",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "ATL",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "GEG",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.4412470023980815
  },
  {
    "nickname": "ATA",
    "destination": "LGA",
    "origin": "MDW",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.989247311827957
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "MDW",
    "flight_count": 184,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MEM",
    "flight_count": 183,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "LGA",
    "flight_count": 183,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.9891891891891892
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MDW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8625592417061612
  },
  {
    "nickname": "Northwest",
    "destination": "PVD",
    "origin": "DTW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ELP",
    "origin": "DFW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "DFW",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5723270440251572
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MSP",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BOS",
    "flight_count": 182,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MCO",
    "origin": "JFK",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6605839416058394
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SJC",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5973597359735974
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PBI",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "LGA",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.14909390444810544
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ATL",
    "flight_count": 181,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8660287081339713
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CLT",
    "flight_count": 180,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "RDU",
    "flight_count": 180,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.967741935483871
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BWI",
    "flight_count": 180,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.6498194945848376
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "ORD",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4837837837837838
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PVD",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "OMA",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "CMH",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ATL",
    "origin": "EWR",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8325581395348837
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "HOU",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "TUS",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MDW",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "ATL",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9728260869565217
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ATL",
    "flight_count": 179,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.4004474272930649
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SJC",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5668789808917197
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PIT",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SLC",
    "origin": "MSP",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.994413407821229
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "MCO",
    "flight_count": 178,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6819923371647509
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "ATL",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "ORD",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8045454545454546
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DFW",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5412844036697247
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "PHX",
    "flight_count": 177,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.69140625
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "PHL",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8073394495412844
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.45012787723785164
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "GRR",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5176470588235295
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "ORD",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6692015209125475
  },
  {
    "nickname": "Southwest",
    "destination": "BUR",
    "origin": "PHX",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6470588235294118
  },
  {
    "nickname": "America West",
    "destination": "DFW",
    "origin": "PHX",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47696476964769646
  },
  {
    "nickname": "Northwest",
    "destination": "MDW",
    "origin": "MSP",
    "flight_count": 176,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5191740412979351
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ORF",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "HPN",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SLC",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.9887005649717514
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "PDX",
    "flight_count": 175,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.9722222222222222
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BWI",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "TPA",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9886363636363636
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PHL",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SNA",
    "flight_count": 174,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.5858585858585859
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SNA",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "BWI",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MDW",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.5164179104477612
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "ORD",
    "flight_count": 173,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9664804469273743
  },
  {
    "nickname": "Continental Express",
    "destination": "HPN",
    "origin": "CLE",
    "flight_count": 172,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "ORD",
    "flight_count": 172,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2925170068027211
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PIT",
    "flight_count": 172,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ORD",
    "flight_count": 171,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.35330578512396693
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "TPA",
    "flight_count": 171,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SNA",
    "flight_count": 171,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.9661016949152542
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SGF",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ONT",
    "origin": "SEA",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LGA",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SGF",
    "origin": "DFW",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MSY",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ABQ",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.9941520467836257
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "BOS",
    "flight_count": 170,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.14154870940882597
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "MEM",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PVD",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.7161016949152542
  },
  {
    "nickname": "America West",
    "destination": "SNA",
    "origin": "PHX",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5504885993485342
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DEN",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.2934027777777778
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MCI",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.5059880239520959
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SJC",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "RNO",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "DFW",
    "flight_count": 169,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9825581395348837
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "DFW",
    "flight_count": 168,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3792325056433409
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 168,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.49411764705882355
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "DFW",
    "flight_count": 168,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9882352941176471
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MSY",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "OAK",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.5738831615120275
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "TPA",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "RDU",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.7695852534562212
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.42710997442455245
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "DFW",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9027027027027027
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "TPA",
    "flight_count": 167,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9653179190751445
  },
  {
    "nickname": "America West",
    "destination": "MCI",
    "origin": "PHX",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.538961038961039
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "IAH",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.907103825136612
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "LAX",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "DTW",
    "flight_count": 166,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "DFW",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5749128919860628
  },
  {
    "nickname": "Northwest",
    "destination": "IAH",
    "origin": "MSP",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.717391304347826
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MCI",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.4940119760479042
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "DTW",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SAV",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 0.9939759036144579
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MEM",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DFW",
    "origin": "DTW",
    "flight_count": 165,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.5851063829787234
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PHX",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8324873096446701
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "ORD",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9590643274853801
  },
  {
    "nickname": "Delta",
    "destination": "SAV",
    "origin": "ATL",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9939393939393939
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "CLT",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "RNO",
    "flight_count": 164,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15688161693936478
  },
  {
    "nickname": "Continental Express",
    "destination": "ABE",
    "origin": "CLE",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5780141843971631
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "MSP",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.4808259587020649
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ABE",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "STL",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9476744186046512
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "CLT",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "MEM",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PDX",
    "origin": "PHX",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.43466666666666665
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ABQ",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "DFW",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "SNA",
    "flight_count": 163,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.6468253968253969
  },
  {
    "nickname": "ATA",
    "destination": "MSP",
    "origin": "MDW",
    "flight_count": 162,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.4835820895522388
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "OAK",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "IAD",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.9938271604938271
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "PHL",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "LGA",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7252252252252253
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DCA",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SEA",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.9526627218934911
  },
  {
    "nickname": "American",
    "destination": "ABQ",
    "origin": "DFW",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8563829787234043
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "CVG",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "PHL",
    "flight_count": 161,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "IAD",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "ORD",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9696969696969697
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SNA",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BOS",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9937888198757764
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "BNA",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.8080808080808081
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "PHL",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "EWR",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9195402298850575
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "ORD",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3305785123966942
  },
  {
    "nickname": "Continental Express",
    "destination": "LGA",
    "origin": "CLE",
    "flight_count": 160,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7582938388625592
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "DEN",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9520958083832335
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "CLT",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "PHX",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5463917525773195
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "STL",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9408284023668639
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2157394843962008
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RDU",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SNA",
    "origin": "ORD",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9875776397515528
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SDF",
    "flight_count": 159,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BWI",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "SLC",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "LAS",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.558303886925795
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "DFW",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9239766081871345
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "BWI",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MCI",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MSY",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "PHL",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.34347826086956523
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "DFW",
    "flight_count": 158,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "EWR",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8579234972677595
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.6038461538461538
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "PHX",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5432525951557093
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "MSY",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "TPA",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RIC",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "MEM",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5340136054421769
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SDF",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SJU",
    "flight_count": 157,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.9936708860759493
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LGA",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "IAH",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6995515695067265
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "DTW",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.8041237113402062
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "DFW",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LEX",
    "origin": "ATL",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9341317365269461
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SAN",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ORD",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7684729064039408
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DFW",
    "flight_count": 156,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.46153846153846156
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DAY",
    "flight_count": 155,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "GRK",
    "origin": "DFW",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00046980079866135773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "BUR",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "PHL",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5273972602739726
  },
  {
    "nickname": "Delta",
    "destination": "RIC",
    "origin": "ATL",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ISP",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.7439613526570048
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "LAX",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "IAH",
    "flight_count": 154,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7031963470319634
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "GRK",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00046690079373134933,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MIA",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9503105590062112
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "ORD",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.31611570247933884
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ORD",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.498371335504886
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PHL",
    "flight_count": 153,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.33260869565217394
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "OAK",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "DTW",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.8216216216216217
  },
  {
    "nickname": "America West",
    "destination": "IAH",
    "origin": "PHX",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9047619047619048
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "LAS",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MCO",
    "flight_count": 152,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "ATL",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9151515151515152
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "JAX",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "LEX",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.9320987654320988
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "LAX",
    "flight_count": 151,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8118279569892473
  },
  {
    "nickname": "United",
    "destination": "SNA",
    "origin": "DEN",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MCO",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8771929824561403
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "BWI",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "ATL",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.974025974025974
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MDW",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "United",
    "destination": "SNA",
    "origin": "SFO",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "SMF",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.5415162454873647
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "DFW",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.45871559633027525
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "PHL",
    "flight_count": 150,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7109004739336493
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "LAS",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "CLT",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.7487437185929648
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "DCA",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "MCO",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6962616822429907
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PHL",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.3239130434782609
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "MDW",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "AUS",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "LGB",
    "flight_count": 149,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SFO",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.9192546583850931
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BOS",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9079754601226994
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PHX",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6981132075471698
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "PHX",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8268156424581006
  },
  {
    "nickname": "United",
    "destination": "RNO",
    "origin": "DEN",
    "flight_count": 148,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BNA",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "DEN",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ATL",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5464684014869888
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "DEN",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "ORD",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2648648648648649
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "SMF",
    "flight_count": 147,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.6805555555555556
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "HOU",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "DAL",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CLT",
    "origin": "DFW",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4306784660766962
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "EWR",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9012345679012346
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PVD",
    "flight_count": 146,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.73
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "CLT",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "ONT",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "GEG",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BOS",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "CLT",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.4277286135693215
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "PHL",
    "flight_count": 145,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "JFK",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MCO",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7461139896373057
  },
  {
    "nickname": "United",
    "destination": "LAS",
    "origin": "IAD",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "JFK",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "MIA",
    "flight_count": 144,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "ORD",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3844086021505376
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "DTW",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9050632911392406
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "DEN",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "American Eagle",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5958333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "DTW",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9407894736842105
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SEA",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "DAL",
    "flight_count": 143,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ONT",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "PHX",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.461038961038961
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "JFK",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9403973509933775
  },
  {
    "nickname": "American",
    "destination": "ONT",
    "origin": "DFW",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "PDX",
    "flight_count": 142,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "PHX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6130434782608696
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LAX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2695984703632887
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "OAK",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MDT",
    "origin": "ATL",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9038461538461539
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LAX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.592436974789916
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ONT",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "AUS",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.6130434782608696
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ABE",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.9591836734693877
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "EWR",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7663043478260869
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "PHX",
    "flight_count": 141,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5280898876404494
  },
  {
    "nickname": "Continental Express",
    "destination": "MDT",
    "origin": "CLE",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "DEN",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "MSP",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "DEN",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.958904109589041
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "SFO",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Alaska",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.4778156996587031
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BNA",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "BUR",
    "origin": "SEA",
    "flight_count": 140,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "DTW",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "IND",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SLC",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.6813725490196079
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "ORD",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9788732394366197
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MDT",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SAN",
    "origin": "PDX",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "IAH",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8323353293413174
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "SEA",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5225563909774437
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "AUS",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.9391891891891891
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DTW",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "PDX",
    "flight_count": 139,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.3787465940054496
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PHL",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.4726027397260274
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PBI",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.8263473053892215
  },
  {
    "nickname": "Continental Express",
    "destination": "DAY",
    "origin": "CLE",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "RNO",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.5348837209302325
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "TPA",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MDW",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8518518518518519
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BDL",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SMF",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.965034965034965
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "TPA",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "PBI",
    "origin": "JFK",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.8263473053892215
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MSY",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4524590163934426
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LAX",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8961038961038961
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "CLT",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.6764705882352942
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PHX",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3770491803278688
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "HOU",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "PHX",
    "flight_count": 138,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.4495114006514658
  },
  {
    "nickname": "Northwest",
    "destination": "ANC",
    "origin": "MSP",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "MCO",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7527472527472527
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "MDW",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MIA",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9856115107913669
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "BNA",
    "flight_count": 137,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.845679012345679
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "CLT",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "LAS",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "TPA",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "LAS",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.17503217503217502
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1267474370922647
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "BNA",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.7513812154696132
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "CLE",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7431693989071039
  },
  {
    "nickname": "United",
    "destination": "ONT",
    "origin": "DEN",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "MCO",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "PHL",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8192771084337349
  },
  {
    "nickname": "Northwest",
    "destination": "BDL",
    "origin": "DTW",
    "flight_count": 136,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FLL",
    "origin": "DTW",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "OMA",
    "origin": "PHX",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6852791878172588
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "BWI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MCI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "RNO",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.5532786885245902
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MCI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.6716417910447762
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "BWI",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MSY",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BNA",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "LAS",
    "flight_count": 135,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9246575342465754
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "DCA",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "OMA",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.6036036036036037
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5929203539823009
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "XNA",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.7613636363636364
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "SAN",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "ORD",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6871794871794872
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SAV",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SAV",
    "origin": "CLT",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SMF",
    "origin": "DFW",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CLE",
    "origin": "DFW",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5982142857142857
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SFO",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "JAN",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "DFW",
    "flight_count": 134,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4364820846905538
  },
  {
    "nickname": "Northwest",
    "destination": "RSW",
    "origin": "DTW",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MSY",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BNA",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ANC",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BWI",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BWI",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.5018867924528302
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BOS",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9637681159420289
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "DFW",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9432624113475178
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BDL",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "DCA",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SAN",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.7556818181818182
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PVD",
    "flight_count": 133,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "CLT",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5217391304347826
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "CLE",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8198757763975155
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SMF",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSP",
    "origin": "PHL",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.559322033898305
  },
  {
    "nickname": "American",
    "destination": "IAD",
    "origin": "DFW",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9850746268656716
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BNA",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BDL",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.8098159509202454
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SFO",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3062645011600928
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "IAD",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "IND",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.9361702127659575
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "OKC",
    "flight_count": 132,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "GSO",
    "flight_count": 131,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "EWR",
    "origin": "MSP",
    "flight_count": 131,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.7751479289940828
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "CLT",
    "flight_count": 131,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "FLL",
    "flight_count": 130,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.9923664122137404
  },
  {
    "nickname": "America West",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 130,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.15873015873015872
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "MSP",
    "flight_count": 130,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MSP",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5512820512820513
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "ATL",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ABE",
    "origin": "MDT",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "ORD",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9923076923076923
  },
  {
    "nickname": "American Eagle",
    "destination": "XNA",
    "origin": "DFW",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7543859649122807
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "PHL",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SJC",
    "flight_count": 129,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DCA",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "BWI",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.920863309352518
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "IND",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BOS",
    "origin": "EWR",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9624060150375939
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OAK",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "LAS",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "TPA",
    "flight_count": 128,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9922480620155039
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "PHX",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SMF",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.4584837545126354
  },
  {
    "nickname": "Northwest",
    "destination": "SJC",
    "origin": "MSP",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "MCO",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6614583333333334
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BOS",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SMF",
    "origin": "SEA",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.4774436090225564
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MCI",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "CLT",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SJU",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJU",
    "origin": "ATL",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "RNO",
    "origin": "SEA",
    "flight_count": 127,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.503968253968254
  },
  {
    "nickname": "America West",
    "destination": "OAK",
    "origin": "PHX",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47191011235955055
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "IAD",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.9197080291970803
  },
  {
    "nickname": "America West",
    "destination": "SJC",
    "origin": "PHX",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.4359861591695502
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "BWI",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "IND",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.9064748201438849
  },
  {
    "nickname": "American",
    "destination": "OAK",
    "origin": "DFW",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BDL",
    "origin": "ORD",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5121951219512195
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "BDL",
    "flight_count": 126,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SEA",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.22768670309653916
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PVD",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.6410256410256411
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "TPA",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9328358208955224
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "RNO",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SEA",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.49603174603174605
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PDX",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.9541984732824428
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PVD",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "FLL",
    "flight_count": 125,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "DEN",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7045454545454546
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MCI",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "MEM",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MDW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "DFW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7294117647058823
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "OAK",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.4261168384879725
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MCI",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "DFW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "PHL",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "RSW",
    "flight_count": 124,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DEN",
    "origin": "CLT",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.9761904761904762
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "OKC",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SNA",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.41414141414141414
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ROC",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "DFW",
    "origin": "MDW",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7321428571428571
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CMH",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DEN",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHX",
    "origin": "CLT",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSN",
    "origin": "MSP",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "LBB",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "SFO",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.7365269461077845
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SAN",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "PHL",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SJC",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.39171974522292996
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CMH",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "PHL",
    "flight_count": 123,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PVD",
    "origin": "ORD",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6354166666666666
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "MDW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8133333333333334
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BDL",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.5104602510460251
  },
  {
    "nickname": "Northwest",
    "destination": "MIA",
    "origin": "DTW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.9838709677419355
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "SJC",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.7625
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "DFW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4250871080139373
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "DEN",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7625
  },
  {
    "nickname": "ATA",
    "destination": "DEN",
    "origin": "MDW",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7770700636942676
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "DEN",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8531468531468531
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "TPA",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "PIT",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.8299319727891157
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "TPA",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PWM",
    "origin": "PHL",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3609467455621302
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "STL",
    "flight_count": 122,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9104477611940298
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "MSP",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "DEN",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "EWR",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7076023391812866
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "ABQ",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ILM",
    "origin": "CLT",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00037120063104107277,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "PHL",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BUF",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.8581560283687943
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "STL",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CLT",
    "origin": "ATL",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.44981412639405205
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ILM",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00037120063104107277,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "PHX",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BWI",
    "origin": "MSP",
    "flight_count": 121,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LAS",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.4332129963898917
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SAT",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BOI",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "DAL",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SFO",
    "origin": "LAS",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.28776978417266186
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "ELP",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "CLT",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BUF",
    "origin": "JFK",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "ORD",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4878048780487805
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ALB",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "DEN",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7228915662650602
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "JAX",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.9523809523809523
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "BOI",
    "flight_count": 120,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SJC",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5336322869955157
  },
  {
    "nickname": "American",
    "destination": "CMH",
    "origin": "DFW",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9916666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "FLL",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.815068493150685
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "DFW",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.38762214983713356
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "CLT",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "CMH",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.9916666666666667
  },
  {
    "nickname": "America West",
    "destination": "RNO",
    "origin": "PHX",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5242290748898678
  },
  {
    "nickname": "Northwest",
    "destination": "BOI",
    "origin": "MSP",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "TUS",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "OAK",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "EWR",
    "origin": "PIT",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.6918604651162791
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.15101522842639595
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CLT",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.47035573122529645
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "BWI",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "RDU",
    "flight_count": 119,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "TPA",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.6820809248554913
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ORD",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8027210884353742
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "DAL",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "TPA",
    "origin": "JFK",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6941176470588235
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "LAX",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6742857142857143
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "RNO",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.4573643410852713
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ROA",
    "origin": "ATL",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9752066115702479
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "SFO",
    "flight_count": 118,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.7239263803680982
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "LAX",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7048192771084337
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "BHM",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SAT",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.7905405405405406
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "LGB",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "RDU",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DEN",
    "origin": "PIT",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9915254237288136
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MCI",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "DCA",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DTW",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.4148936170212766
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ATL",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BUF",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "IND",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "PIT",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BDL",
    "flight_count": 117,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.4895397489539749
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "BTR",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.8467153284671532
  },
  {
    "nickname": "American Eagle",
    "destination": "BTR",
    "origin": "DFW",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9354838709677419
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PDX",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.31607629427792916
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "HOU",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "PIT",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7341772151898734
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "MCO",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.90625
  },
  {
    "nickname": "Continental Express",
    "destination": "CVG",
    "origin": "EWR",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6744186046511628
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BNA",
    "flight_count": 116,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ABQ",
    "origin": "IAH",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8914728682170543
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "ORD",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5476190476190477
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "ELP",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PWM",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "BNA",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MCO",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "SEA",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.2979274611398964
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SNA",
    "flight_count": 115,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ABQ",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.890625
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "TUS",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.9661016949152542
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "MDW",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "FLL",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8444444444444444
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "MCI",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BWI",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "ROA",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "PDX",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.4892703862660944
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "LIT",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "PIT",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SJC",
    "origin": "PDX",
    "flight_count": 114,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.4892703862660944
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DEN",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9338842975206612
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "FLL",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.5594059405940595
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "BNA",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BDL",
    "origin": "MSP",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "DTW",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "PIT",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LAS",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.2627906976744186
  },
  {
    "nickname": "Delta",
    "destination": "IAD",
    "origin": "ATL",
    "flight_count": 113,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.773972602739726
  },
  {
    "nickname": "Alaska",
    "destination": "PHX",
    "origin": "PDX",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.30517711171662126
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "ABQ",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "SNA",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.7320261437908496
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "DFW",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9180327868852459
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "IAD",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.8115942028985508
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "MIA",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "TUS",
    "origin": "PHX",
    "flight_count": 112,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7724137931034483
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ONT",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.22606924643584522
  },
  {
    "nickname": "Delta",
    "destination": "IAD",
    "origin": "MCO",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.29365079365079366
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3264705882352941
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "PDX",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ORF",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "JAX",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.9910714285714286
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BDL",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CVG",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7025316455696202
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GRR",
    "flight_count": 111,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "COS",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.9243697478991597
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SMF",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ORF",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "AUS",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ALB",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "MEM",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SMF",
    "origin": "MSP",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "LAX",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.20833333333333334
  },
  {
    "nickname": "USAir",
    "destination": "MSP",
    "origin": "CLT",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "MDW",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DEN",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.5729166666666666
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "DFW",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.7746478873239436
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MSP",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "SEA",
    "flight_count": 110,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.5365853658536586
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "MDW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8320610687022901
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "DFW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.2891246684350133
  },
  {
    "nickname": "Northwest",
    "destination": "ABQ",
    "origin": "MSP",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ORD",
    "origin": "DTW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.3797909407665505
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "RNO",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.44672131147540983
  },
  {
    "nickname": "American Eagle",
    "destination": "MAF",
    "origin": "DFW",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.990909090909091
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "SAT",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "CLT",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "PHX",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.2906666666666667
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ABQ",
    "flight_count": 109,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "FLL",
    "origin": "ORD",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5538461538461539
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PHX",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.8780487804878049
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "DAL",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "TUS",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BNA",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.6835443037974683
  },
  {
    "nickname": "America West",
    "destination": "STL",
    "origin": "PHX",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3302752293577982
  },
  {
    "nickname": "USAir",
    "destination": "DEN",
    "origin": "PHL",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5023255813953489
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "LAS",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.28272251308900526
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DEN",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.675
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "MCO",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9152542372881356
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "PHX",
    "flight_count": 108,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.47577092511013214
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ATL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9469026548672567
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "FLL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8629032258064516
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "STL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9304347826086956
  },
  {
    "nickname": "Northwest",
    "destination": "PHL",
    "origin": "DTW",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.535
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DCA",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ABQ",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.33860759493670883
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RDU",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "BOI",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 0.7753623188405797
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "IAD",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.2907608695652174
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PHL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.49767441860465117
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MAF",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 0.9907407407407407
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "TPA",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 107,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6079545454545454
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "ELP",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ONT",
    "origin": "MSP",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "SJC",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.28804347826086957
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MDT",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.8907563025210085
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "STL",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.28418230563002683
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BWI",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9724770642201835
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MCI",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "BUR",
    "origin": "PDX",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "LAX",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8617886178861789
  },
  {
    "nickname": "Delta",
    "destination": "ABE",
    "origin": "ATL",
    "flight_count": 106,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "CLE",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9905660377358491
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4646017699115044
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "DCA",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHL",
    "origin": "MSP",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.44871794871794873
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PVD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "ISP",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.9375
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "ONT",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PVD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "EWR",
    "origin": "SFO",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.9722222222222222
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LAS",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.963302752293578
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "ISP",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "IAD",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.8974358974358975
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "SEA",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.7720588235294118
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "BOS",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8974358974358975
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PHX",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9905660377358491
  },
  {
    "nickname": "Continental Express",
    "destination": "IND",
    "origin": "CLE",
    "flight_count": 105,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "IAD",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "LIT",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PHL",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.4406779661016949
  },
  {
    "nickname": "Continental Express",
    "destination": "CMH",
    "origin": "CLE",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6459627329192547
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BWI",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "ELP",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "OAK",
    "flight_count": 104,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BWI",
    "origin": "ATL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.911504424778761
  },
  {
    "nickname": "American Eagle",
    "destination": "LIT",
    "origin": "ORD",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "COS",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "ATL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6645161290322581
  },
  {
    "nickname": "Continental Express",
    "destination": "CLT",
    "origin": "EWR",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5255102040816326
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.6167664670658682
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "CLT",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "PHX",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.27466666666666667
  },
  {
    "nickname": "Northwest",
    "destination": "DFW",
    "origin": "MSP",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.5049019607843137
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MSY",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PHX",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TYS",
    "origin": "ATL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.31212121212121213
  },
  {
    "nickname": "Northwest",
    "destination": "COS",
    "origin": "MSP",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MCO",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9903846153846154
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TYS",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 0.31790123456790126
  },
  {
    "nickname": "Northwest",
    "destination": "PBI",
    "origin": "DTW",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHX",
    "origin": "PIT",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9903846153846154
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "TUL",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "MCO",
    "flight_count": 103,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9035087719298246
  },
  {
    "nickname": "American Eagle",
    "destination": "LBB",
    "origin": "DFW",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "CVG",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7669172932330827
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "LAX",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6375
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DFW",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LBB",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "MDW",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MCN",
    "origin": "ATL",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00029870050779086323,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PBI",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PVD",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MCN",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0002958005028608549,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "JFK",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "MCO",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6891891891891891
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "SJC",
    "flight_count": 102,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.45739910313901344
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BWI",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "MDW",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "PBI",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CMH",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "PHL",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7013888888888888
  },
  {
    "nickname": "Continental Express",
    "destination": "DTW",
    "origin": "CLE",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8347107438016529
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DTW",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.6158536585365854
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "TPA",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SAN",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.9528301886792453
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "HOU",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 101,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.3435374149659864
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "IND",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.970873786407767
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PBI",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.9803921568627451
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.38461538461538464
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DFW",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "MCO",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SNA",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "PHL",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.6896551724137931
  },
  {
    "nickname": "American",
    "destination": "TUS",
    "origin": "ORD",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "LAS",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SNA",
    "origin": "PIT",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MIA",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.5813953488372093
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "LAX",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.819672131147541
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "EWR",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "PDX",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "STL",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ONT",
    "origin": "PHX",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.18083182640144665
  },
  {
    "nickname": "Southwest",
    "destination": "SNA",
    "origin": "LAS",
    "flight_count": 100,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.3508771929824561
  },
  {
    "nickname": "ATA",
    "destination": "EWR",
    "origin": "MDW",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CLT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "ORD",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24205378973105135
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "DFW",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9801980198019802
  },
  {
    "nickname": "USAir",
    "destination": "STL",
    "origin": "CLT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ELP",
    "origin": "PHX",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.29464285714285715
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "OAK",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "ABQ",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "MHT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "HOU",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCI",
    "origin": "PIT",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SEA",
    "flight_count": 99,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DEN",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SYR",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "SLC",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5903614457831325
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "STL",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "SDF",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.9245283018867925
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "BWI",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "SEA",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.6758620689655173
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "STL",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9245283018867925
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "AUS",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "LAS",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9423076923076923
  },
  {
    "nickname": "USAir",
    "destination": "EWR",
    "origin": "CLT",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.494949494949495
  },
  {
    "nickname": "America West",
    "destination": "DFW",
    "origin": "LAS",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.35379061371841153
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "TPA",
    "flight_count": 98,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "TPA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9797979797979798
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "BNA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "MEM",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "TUL",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LGB",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ISP",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.7185185185185186
  },
  {
    "nickname": "Delta",
    "destination": "SAN",
    "origin": "ATL",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SFO",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6879432624113475
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "BUR",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.27170868347338933
  },
  {
    "nickname": "American Eagle",
    "destination": "AMA",
    "origin": "DFW",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9897959183673469
  },
  {
    "nickname": "Jetblue",
    "destination": "ROC",
    "origin": "JFK",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7578125
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "PIT",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.97
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "OAK",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "DCA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "ROC",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.7578125
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SLC",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PHL",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5159574468085106
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "AMA",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 0.9897959183673469
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ELP",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.305993690851735
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SAN",
    "flight_count": 97,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BUR",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "PHL",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "ELP",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "SFO",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5925925925925926
  },
  {
    "nickname": "America West",
    "destination": "BUR",
    "origin": "PHX",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.35294117647058826
  },
  {
    "nickname": "Continental",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2823529411764706
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "CLT",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BUR",
    "origin": "DFW",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ORD",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6906474820143885
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PHL",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "DCA",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.8495575221238938
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ALB",
    "flight_count": 96,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GEG",
    "origin": "MSP",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PHL",
    "origin": "IAH",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.27941176470588236
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "SFO",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6597222222222222
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "PHL",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9405940594059405
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "SFO",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.5337078651685393
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BWI",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.34296028880866425
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.28106508875739644
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DFW",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.47029702970297027
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "ORD",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4523809523809524
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "BWI",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9895833333333334
  },
  {
    "nickname": "Delta",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6209150326797386
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "ORD",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SEA",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.4634146341463415
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "MCI",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "LIT",
    "flight_count": 95,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "FLL",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.28484848484848485
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GEG",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MDT",
    "origin": "ABE",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "OAK",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGB",
    "origin": "DFW",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "BUR",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "BNA",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RDU",
    "origin": "ATL",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PIT",
    "flight_count": 94,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.2678062678062678
  },
  {
    "nickname": "Continental Express",
    "destination": "BHM",
    "origin": "IAH",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8611111111111112
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DTW",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.3240418118466899
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "EWR",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4744897959183674
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.30491803278688523
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DTW",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.465
  },
  {
    "nickname": "Continental Express",
    "destination": "BRO",
    "origin": "IAH",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002726004634207878,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9893617021276596
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "PHL",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "SAN",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "SAN",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BDL",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "EWR",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9789473684210527
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BRO",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.9893617021276596
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.29245283018867924
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SLC",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5535714285714286
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "LAS",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9893617021276596
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "PIT",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RDU",
    "flight_count": 93,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SAN",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "CMH",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "TUS",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.968421052631579
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "CLT",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PDX",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.2958199356913183
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "ELP",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RSW",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "RSW",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.2911392405063291
  },
  {
    "nickname": "Jetblue",
    "destination": "RSW",
    "origin": "JFK",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SNA",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SNA",
    "origin": "MSP",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HRL",
    "origin": "HOU",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "HOU",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PIT",
    "origin": "DFW",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.27710843373493976
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BOS",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.6618705035971223
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "LAX",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.26062322946175637
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CRP",
    "flight_count": 92,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "LAS",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CRP",
    "origin": "IAH",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9578947368421052
  },
  {
    "nickname": "United",
    "destination": "MHT",
    "origin": "ORD",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "FLL",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "MIA",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.6946564885496184
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "LAX",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6408450704225352
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MHT",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "PHL",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.48404255319148937
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PDX",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.978494623655914
  },
  {
    "nickname": "American Eagle",
    "destination": "DSM",
    "origin": "DFW",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.978494623655914
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "ONT",
    "flight_count": 91,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "MIA",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.2127659574468085
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "GRR",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "BOS",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHX",
    "origin": "PHL",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8411214953271028
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "CLT",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "DSM",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.9782608695652174
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "BWI",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "HRL",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PHL",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.24456521739130435
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MSY",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "CLE",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MSP",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "IAH",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Northwest",
    "destination": "SAT",
    "origin": "MSP",
    "flight_count": 90,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RDU",
    "origin": "MSP",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DTW",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "DEN",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7876106194690266
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BDL",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "AUS",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.3869565217391304
  },
  {
    "nickname": "Continental Express",
    "destination": "IAD",
    "origin": "EWR",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SFO",
    "origin": "PHX",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.30584192439862545
  },
  {
    "nickname": "America West",
    "destination": "AUS",
    "origin": "PHX",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3869565217391304
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "MEM",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSP",
    "origin": "PIT",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "DFW",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "PHL",
    "origin": "CLE",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6496350364963503
  },
  {
    "nickname": "America West",
    "destination": "SMF",
    "origin": "SNA",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.3531746031746032
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "ANC",
    "flight_count": 89,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OKC",
    "origin": "DFW",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.45595854922279794
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "PIT",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.3320754716981132
  },
  {
    "nickname": "USAir",
    "destination": "ATL",
    "origin": "DCA",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7394957983193278
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SAT",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "DAL",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "DEN",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.3087719298245614
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "OMA",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.3963963963963964
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "CLE",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6616541353383458
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MSY",
    "flight_count": 88,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "PHX",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "SLC",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.9886363636363636
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "ABQ",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BDL",
    "origin": "DFW",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LIT",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "JFK",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2701863354037267
  },
  {
    "nickname": "America West",
    "destination": "MKE",
    "origin": "PHX",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9775280898876404
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "PHX",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.21914357682619648
  },
  {
    "nickname": "Jetblue",
    "destination": "LAS",
    "origin": "JFK",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9456521739130435
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MSN",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SLC",
    "origin": "DFW",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6541353383458647
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DTW",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "BOI",
    "flight_count": 87,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SEA",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.225130890052356
  },
  {
    "nickname": "Continental Express",
    "destination": "LIT",
    "origin": "IAH",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "BNA",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DTW",
    "origin": "ATL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5375
  },
  {
    "nickname": "Continental Express",
    "destination": "MSN",
    "origin": "CLE",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RSW",
    "origin": "MSP",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BHM",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.8514851485148515
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CLT",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.5088757396449705
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "SLC",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "ORD",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "FLL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.42574257425742573
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ATL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7610619469026548
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "STL",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9772727272727273
  },
  {
    "nickname": "Continental Express",
    "destination": "CLT",
    "origin": "CLE",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6142857142857143
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "JFK",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.31386861313868614
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "ORD",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2866666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "OKC",
    "flight_count": 86,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "STL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "IAD",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MSY",
    "origin": "EWR",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "BOI",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MSY",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9444444444444444
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BDL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "PHL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "ORD",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3231939163498099
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MHT",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DTW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.2961672473867596
  },
  {
    "nickname": "Continental",
    "destination": "MSY",
    "origin": "IAH",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9444444444444444
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "MDW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "MDW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ATL",
    "origin": "DTW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.47752808988764045
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MIA",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9883720930232558
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DFW",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.14991181657848324
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BDL",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "PHX",
    "flight_count": 85,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.28668941979522183
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MKE",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "Continental Express",
    "destination": "STL",
    "origin": "IAH",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9230769230769231
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "TUL",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.3605150214592275
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TUL",
    "origin": "DFW",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.345679012345679
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "BNA",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LRD",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0003103005275108968,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "PNS",
    "origin": "IAH",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7706422018348624
  },
  {
    "nickname": "USAir",
    "destination": "LAS",
    "origin": "PIT",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9333333333333333
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PNS",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.7850467289719626
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "MCI",
    "flight_count": 84,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "ORD",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4256410256410256
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "FAY",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00024070040919069562,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "HOU",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BWI",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "AUS",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.5928571428571429
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "HSV",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 0.16403162055335968
  },
  {
    "nickname": "American Eagle",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.32421875
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5424836601307189
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "HSV",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.16633266533066132
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FAR",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "FAY",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "CLT",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.8469387755102041
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "CLT",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.4911242603550296
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LBB",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.20243902439024392
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "TUL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.7345132743362832
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MSY",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.6693548387096774
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SAN",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "SFO",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.46629213483146065
  },
  {
    "nickname": "American Eagle",
    "destination": "LRD",
    "origin": "DFW",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0003074005225808884,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "JAX",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BHM",
    "origin": "ATL",
    "flight_count": 83,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "IND",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MIA",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.6890756302521008
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ORF",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BOS",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "DEN",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.4270833333333333
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "RNO",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RDU",
    "origin": "DTW",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "OMA",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.9647058823529412
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.07642124883504194
  },
  {
    "nickname": "Continental Express",
    "destination": "LBB",
    "origin": "IAH",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DTW",
    "origin": "IAH",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.24550898203592814
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "RSW",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "DFW",
    "flight_count": 82,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3374485596707819
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MSN",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "LAS",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "ABQ",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "MSY",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BNA",
    "origin": "IAH",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9204545454545454
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "CMH",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "GEG",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FAR",
    "origin": "MSP",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00023780040426068724,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SFO",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "DAL",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MIA",
    "origin": "IAH",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "PDX",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.574468085106383
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MHT",
    "flight_count": 81,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MIA",
    "origin": "MSP",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.9523809523809523
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "ORD",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.26058631921824105
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3389830508474576
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "CLT",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "BDL",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.975609756097561
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "MAF",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORD",
    "origin": "DCA",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.14209591474245115
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DTW",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.22727272727272727
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "BUF",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "GRR",
    "origin": "CLE",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "RNO",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.6015037593984962
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BDL",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SFO",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.22099447513812154
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "MDW",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MCI",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "IAD",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MIA",
    "flight_count": 80,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.9302325581395349
  },
  {
    "nickname": "America West",
    "destination": "SLC",
    "origin": "PHX",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.30859375
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CVG",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9634146341463414
  },
  {
    "nickname": "American Eagle",
    "destination": "BGR",
    "origin": "BOS",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9634146341463414
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "OMA",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAS",
    "origin": "PHL",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9186046511627907
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OKC",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.42934782608695654
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ORD",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14337568058076225
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "IAD",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MCO",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.24307692307692308
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BNA",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.9875
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "PIT",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PBI",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "ORD",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6638655462184874
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SLC",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.29699248120300753
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LFT",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4647058823529412
  },
  {
    "nickname": "Continental Express",
    "destination": "LFT",
    "origin": "IAH",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "BNA",
    "flight_count": 79,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "TPA",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "DFW",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5735294117647058
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "LGA",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "OKC",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.8478260869565217
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "ORD",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1984732824427481
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ROC",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.6842105263157895
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SFO",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.30115830115830117
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "CMH",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "ATL",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "DEN",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "TUL",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "STL",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9629629629629629
  },
  {
    "nickname": "American Eagle",
    "destination": "BUF",
    "origin": "ORD",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5492957746478874
  },
  {
    "nickname": "Jetblue",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6842105263157895
  },
  {
    "nickname": "American Eagle",
    "destination": "OKC",
    "origin": "ORD",
    "flight_count": 78,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9397590361445783
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "LAX",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.55
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "PIT",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "SLC",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.23123123123123124
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "LGA",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.9746835443037974
  },
  {
    "nickname": "Continental Express",
    "destination": "DCA",
    "origin": "EWR",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8369565217391305
  },
  {
    "nickname": "American Eagle",
    "destination": "TUL",
    "origin": "DFW",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3168724279835391
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.77
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.0741097208854668
  },
  {
    "nickname": "Delta",
    "destination": "BNA",
    "origin": "ATL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "BNA",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PHX",
    "origin": "ATL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9625
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TUL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.33047210300429186
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "PVD",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "LAS",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8953488372093024
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MSY",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9746835443037974
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "BNA",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "LGB",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "LAX",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6260162601626016
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "DAL",
    "flight_count": 77,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "BGR",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PVD",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "ISP",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.5891472868217055
  },
  {
    "nickname": "Continental Express",
    "destination": "MKE",
    "origin": "CLE",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SEA",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.18052256532066507
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BHM",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MSP",
    "origin": "PHX",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.21288515406162464
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "HOU",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAD",
    "origin": "CLE",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "FAI",
    "origin": "ANC",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.95
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "CVG",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "America West",
    "destination": "GEG",
    "origin": "PHX",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "TPA",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.8260869565217391
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ROC",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "CMH",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "BUF",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.5352112676056338
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SAN",
    "flight_count": 76,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.15966386554621848
  },
  {
    "nickname": "Delta",
    "destination": "MOB",
    "origin": "ATL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.000365400621181056,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "DEN",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MCO",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9493670886075949
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ABQ",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.9868421052631579
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "TUL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "MCO",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.28735632183908044
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SEA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "DCA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.13321492007104796
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MSY",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.7575757575757576
  },
  {
    "nickname": "USAir",
    "destination": "BTV",
    "origin": "PHL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SLC",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.44642857142857145
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "BOI",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "MEM",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MAF",
    "origin": "IAH",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "LAS",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LAX",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.5597014925373134
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SYR",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RIC",
    "origin": "DFW",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "LGA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8241758241758241
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "MIA",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MAF",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "JAX",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.9375
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "PHL",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9493670886075949
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 75,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.22189349112426035
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "FAI",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 0.9487179487179487
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CHS",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.8809523809523809
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.13805970149253732
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "MSY",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.5826771653543307
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "PIT",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "MCO",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5736434108527132
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "DAL",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "GEG",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORF",
    "origin": "DFW",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "RDU",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "LAS",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DTW",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24104234527687296
  },
  {
    "nickname": "American",
    "destination": "SAT",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8505747126436781
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ATL",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.4625
  },
  {
    "nickname": "Delta",
    "destination": "CLE",
    "origin": "CVG",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5692307692307692
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ROC",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ABQ",
    "origin": "ORD",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "OMA",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.9135802469135802
  },
  {
    "nickname": "Delta",
    "destination": "CHS",
    "origin": "ATL",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8809523809523809
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "MSP",
    "flight_count": 74,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SEA",
    "origin": "PHX",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.18387909319899245
  },
  {
    "nickname": "Delta",
    "destination": "PHL",
    "origin": "CVG",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8390804597701149
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "MHT",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "MSY",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "EWR",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "PHL",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "ORD",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BOS",
    "origin": "IAH",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MIA",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.8390804597701149
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "HOU",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "ORD",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24914675767918087
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MCO",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5069444444444444
  },
  {
    "nickname": "American",
    "destination": "JAX",
    "origin": "DFW",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8795180722891566
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SEA",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MKE",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "FLL",
    "flight_count": 73,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6293103448275862
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "DSM",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.8372093023255814
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "CLE",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5853658536585366
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MIA",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.4186046511627907
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "FLL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.972972972972973
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "MCO",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6857142857142857
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BHM",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BTR",
    "origin": "ATL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "BTR",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "LAX",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2491349480968858
  },
  {
    "nickname": "Northwest",
    "destination": "OMA",
    "origin": "MSP",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DCA",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.6990291262135923
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MSY",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "IAD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "TUL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.3090128755364807
  },
  {
    "nickname": "American Eagle",
    "destination": "HPN",
    "origin": "ORD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3050847457627119
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "USAir",
    "destination": "STL",
    "origin": "PHL",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "HPN",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 72,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.45569620253164556
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.22468354430379747
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "MDW",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7244897959183674
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "SLC",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.8452380952380952
  },
  {
    "nickname": "American Eagle",
    "destination": "DSM",
    "origin": "ORD",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.8068181818181818
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "TPA",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.24912280701754386
  },
  {
    "nickname": "Continental Express",
    "destination": "IND",
    "origin": "EWR",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6826923076923077
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SAT",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.922077922077922
  },
  {
    "nickname": "America West",
    "destination": "DEN",
    "origin": "LAS",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.17149758454106281
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "LAS",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.2508833922261484
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PHL",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8352941176470589
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "CLT",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "MEM",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MSP",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.2125748502994012
  },
  {
    "nickname": "Continental Express",
    "destination": "DAY",
    "origin": "EWR",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "MCO",
    "flight_count": 71,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.4930555555555556
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ATL",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.45751633986928103
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DCA",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.660377358490566
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "HOU",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "CMH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.7070707070707071
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "HRL",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "HRL",
    "origin": "IAH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PVD",
    "origin": "ORD",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3645833333333333
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MDT",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "PBI",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "CMH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "CMH",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.9722222222222222
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "DCA",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PVD",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.358974358974359
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "RNO",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "PHL",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5035971223021583
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SYR",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "IND",
    "flight_count": 70,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BOS",
    "origin": "CLE",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8734177215189873
  },
  {
    "nickname": "Northwest",
    "destination": "MIA",
    "origin": "MEM",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "PHL",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.6831683168316832
  },
  {
    "nickname": "America West",
    "destination": "SAN",
    "origin": "PHX",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.12169312169312169
  },
  {
    "nickname": "Continental Express",
    "destination": "JFK",
    "origin": "CLE",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7840909090909091
  },
  {
    "nickname": "America West",
    "destination": "SNA",
    "origin": "SMF",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.3194444444444444
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "SLC",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "EWR",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5476190476190477
  },
  {
    "nickname": "ATA",
    "destination": "DCA",
    "origin": "MDW",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "MCI",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SAN",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "BWI",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "SLC",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5348837209302325
  },
  {
    "nickname": "Continental",
    "destination": "MFE",
    "origin": "IAH",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00044660075922129067,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7931034482758621
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "CLT",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BHM",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PHL",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.49640287769784175
  },
  {
    "nickname": "United",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.26953125
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MIA",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "DCA",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "BDL",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SMF",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MFE",
    "flight_count": 69,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00044660075922129067,
    "carriers as a percentage of route": 0.7931034482758621
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CMH",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.6868686868686869
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "TPA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SEA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.16152019002375298
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7157894736842105
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LAS",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "MDW",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "STL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9577464788732394
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "TUL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "JFK",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7816091954022989
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "BDL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "SJC",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BNA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.918918918918919
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "GSO",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "ABQ",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "FLL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MDW",
    "origin": "CLE",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.22149837133550487
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "BNA",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SEA",
    "origin": "PHL",
    "flight_count": 68,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "PIT",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSP",
    "origin": "DFW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3316831683168317
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MFE",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00044660075922129067,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "AMA",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SYR",
    "origin": "JFK",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6907216494845361
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "STL",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9710144927536232
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "SLC",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.4036144578313253
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MDW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.23591549295774647
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "IND",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OMA",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "JAC",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00024940042398072075,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LEX",
    "origin": "CLE",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SLC",
    "origin": "ORD",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.7052631578947368
  },
  {
    "nickname": "Continental Express",
    "destination": "STL",
    "origin": "EWR",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9852941176470589
  },
  {
    "nickname": "Continental",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5775862068965517
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SYR",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.6767676767676768
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ORF",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.8933333333333333
  },
  {
    "nickname": "American",
    "destination": "OMA",
    "origin": "DFW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MDW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.5037593984962406
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "PDX",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MFE",
    "origin": "DFW",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00044660075922129067,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SAT",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RIC",
    "flight_count": 67,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.22525597269624573
  },
  {
    "nickname": "USAir",
    "destination": "SEA",
    "origin": "PIT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "ONT",
    "origin": "PDX",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAH",
    "origin": "MEM",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.49624060150375937
  },
  {
    "nickname": "Southwest",
    "destination": "AMA",
    "origin": "DAL",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PHL",
    "origin": "MDW",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.49624060150375937
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PHL",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.55
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "RIC",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.9705882352941176
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MCI",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.3283582089552239
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ALB",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "BHM",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "PIT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SAT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "United",
    "destination": "JAC",
    "origin": "DEN",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0002465004190507124,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "JAN",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CLT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.3235294117647059
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SFO",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.4074074074074074
  },
  {
    "nickname": "Northwest",
    "destination": "CMH",
    "origin": "MSP",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "IAH",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.559322033898305
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "OKC",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.9705882352941176
  },
  {
    "nickname": "USAir",
    "destination": "IAH",
    "origin": "DCA",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SEA",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.7096774193548387
  },
  {
    "nickname": "Continental Express",
    "destination": "OKC",
    "origin": "IAH",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6226415094339622
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MHT",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "PHX",
    "flight_count": 66,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "BTV",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MEM",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.48872180451127817
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "AUS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "BOS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.7558139534883721
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "TPA",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.7647058823529411
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "OKC",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.6190476190476191
  },
  {
    "nickname": "ATA",
    "destination": "BOS",
    "origin": "MDW",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8441558441558441
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "ATL",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "LAS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "ISP",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "LAS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15738498789346247
  },
  {
    "nickname": "Continental Express",
    "destination": "DCA",
    "origin": "CLE",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6842105263157895
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "BOS",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SJC",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "SJC",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.2145214521452145
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "PVD",
    "flight_count": 65,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.2754237288135593
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "MCO",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.29906542056074764
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "RDU",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "ORD",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1161524500907441
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BDL",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.32653061224489793
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "PBI",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MSN",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SYR",
    "origin": "CLE",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "AUS",
    "origin": "IAH",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "PHX",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.7111111111111111
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "TPA",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.5565217391304348
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.8205128205128205
  },
  {
    "nickname": "United",
    "destination": "FLL",
    "origin": "IAD",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.5039370078740157
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "LGA",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8421052631578947
  },
  {
    "nickname": "Continental Express",
    "destination": "CLT",
    "origin": "IAH",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2922374429223744
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ROC",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.9846153846153847
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SJU",
    "flight_count": 64,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "United",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.27876106194690264
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "DCA",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9402985074626866
  },
  {
    "nickname": "USAir",
    "destination": "PNS",
    "origin": "CLT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SEA",
    "origin": "LAS",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15254237288135594
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "CLT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "TUS",
    "origin": "MSP",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "CLE",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "BWI",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PNS",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BNA",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "DEN",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.6774193548387096
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "IND",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "TPA",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "ATL",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "CMH",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "PIT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SDF",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "TUS",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "CLT",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "MCO",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PVD",
    "flight_count": 63,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BTR",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.96875
  },
  {
    "nickname": "USAir",
    "destination": "DFW",
    "origin": "DCA",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.21602787456445993
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ALB",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "IAH",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6458333333333334
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "PDX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.24124513618677043
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "LAX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6391752577319587
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "ATL",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SDF",
    "origin": "IAH",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8378378378378378
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "SLC",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.30392156862745096
  },
  {
    "nickname": "American",
    "destination": "PSP",
    "origin": "ORD",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9841269841269841
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "STL",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.6813186813186813
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "BWI",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "IND",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6262626262626263
  },
  {
    "nickname": "Southwest",
    "destination": "OMA",
    "origin": "PHX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.3147208121827411
  },
  {
    "nickname": "Continental Express",
    "destination": "ORF",
    "origin": "EWR",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8857142857142857
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "LAX",
    "flight_count": 62,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5344827586206896
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MSP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.29901960784313725
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MCO",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8472222222222222
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "LAX",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7922077922077922
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BUF",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.9242424242424242
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "LGA",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2747747747747748
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BUF",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RNO",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "PHL",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.2890995260663507
  },
  {
    "nickname": "Southwest",
    "destination": "TUS",
    "origin": "ABQ",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MOB",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 0.953125
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "DEN",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.15404040404040403
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SLC",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.6853932584269663
  },
  {
    "nickname": "United",
    "destination": "MCI",
    "origin": "ORD",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3128205128205128
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "MCO",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3177083333333333
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "IND",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6777777777777778
  },
  {
    "nickname": "Northwest",
    "destination": "RNO",
    "origin": "MSP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SAT",
    "origin": "IAH",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9104477611940298
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PSP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 0.9838709677419355
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "ISP",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MKE",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BZN",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00017980030566051963,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ALB",
    "origin": "DTW",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "AUS",
    "flight_count": 61,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MCI",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "STL",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "American",
    "destination": "ELP",
    "origin": "ORD",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BTR",
    "origin": "IAH",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.967741935483871
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SMF",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "SLC",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.46511627906976744
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "FLL",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BZN",
    "origin": "MSP",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00017690030073051123,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "GSP",
    "origin": "EWR",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SYR",
    "origin": "EWR",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "JFK",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SAN",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "BNA",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SEA",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.15706806282722513
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "TPA",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "LAX",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "PDX",
    "flight_count": 60,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.425531914893617
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SEA",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "MEM",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "DEN",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.7866666666666666
  },
  {
    "nickname": "Continental",
    "destination": "MSP",
    "origin": "IAH",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2645739910313901
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ATL",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5514018691588785
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SAT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ICT",
    "origin": "DFW",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6145833333333334
  },
  {
    "nickname": "United",
    "destination": "IND",
    "origin": "ORD",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5130434782608696
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "PDX",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.6781609195402298
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DFW",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.23412698412698413
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "PIT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "PIT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.9365079365079365
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "LAS",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.21299638989169675
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "OKC",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "CLT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TUL",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.5673076923076923
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PDX",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MDT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "PBI",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.7375
  },
  {
    "nickname": "Continental Express",
    "destination": "BNA",
    "origin": "EWR",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9672131147540983
  },
  {
    "nickname": "USAir",
    "destination": "LAS",
    "origin": "CLT",
    "flight_count": 59,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ALB",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "LAX",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.6904761904761905
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "FLL",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.48333333333333334
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BUF",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "AUS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SMF",
    "origin": "LAS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.18471337579617833
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "BNA",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MSY",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "CLE",
    "origin": "DTW",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.35365853658536583
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "HOU",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "SJU",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BOI",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HOU",
    "origin": "AUS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.23770491803278687
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BNA",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SMF",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.17737003058103976
  },
  {
    "nickname": "Continental Express",
    "destination": "MEM",
    "origin": "IAH",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.38666666666666666
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MSP",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.25217391304347825
  },
  {
    "nickname": "Continental Express",
    "destination": "MEM",
    "origin": "CLE",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "DFW",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4264705882352941
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "DFW",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1939799331103679
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.20567375886524822
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "AUS",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.9206349206349206
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ICT",
    "flight_count": 58,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 0.6105263157894737
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "PIT",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SJC",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.18811881188118812
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BNA",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "BNA",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "JAX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DAY",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DTW",
    "origin": "EWR",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.20284697508896798
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "AUS",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SJC",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.7125
  },
  {
    "nickname": "Northwest",
    "destination": "MCI",
    "origin": "MSP",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "FAT",
    "origin": "DFW",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00016530028101047772,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "FAT",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00016530028101047772,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "EWR",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4523809523809524
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "IND",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6705882352941176
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "LAX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.36774193548387096
  },
  {
    "nickname": "USAir",
    "destination": "BTV",
    "origin": "DCA",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "LAX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.32571428571428573
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "IAH",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "AUS",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.40714285714285714
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "OAK",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MEM",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "MCO",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "PDX",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAT",
    "origin": "MEM",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "SAN",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PBI",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "SAN",
    "flight_count": 57,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.1347517730496454
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "BWI",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.4307692307692308
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "OAK",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.509090909090909
  },
  {
    "nickname": "Continental Express",
    "destination": "RDU",
    "origin": "CLE",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SLC",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DAL",
    "origin": "IAH",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6511627906976745
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DAL",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 0.6511627906976745
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SJC",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.11789473684210526
  },
  {
    "nickname": "Jetblue",
    "destination": "LAS",
    "origin": "LGB",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "CLT",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.23728813559322035
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "MCO",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.18122977346278318
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MIA",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MCO",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ABQ",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PVD",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "TPA",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCI",
    "origin": "DEN",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DTW",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MSP",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.6222222222222222
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.39436619718309857
  },
  {
    "nickname": "Continental Express",
    "destination": "GSO",
    "origin": "EWR",
    "flight_count": 56,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9491525423728814
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "TPA",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ELP",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MHT",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.20912547528517111
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "PIT",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.8870967741935484
  },
  {
    "nickname": "Continental Express",
    "destination": "MCI",
    "origin": "IAH",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5978260869565217
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "OKC",
    "origin": "DFW",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.2849740932642487
  },
  {
    "nickname": "American Eagle",
    "destination": "BNA",
    "origin": "ORD",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "United",
    "destination": "CMH",
    "origin": "ORD",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.632183908045977
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "OAK",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "PVD",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MCO",
    "origin": "BOS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.17857142857142858
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "IND",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.6179775280898876
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "BOS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "MSY",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "RIC",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "LAS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "OKC",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.29891304347826086
  },
  {
    "nickname": "Continental",
    "destination": "TPA",
    "origin": "CLE",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "TPA",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.3179190751445087
  },
  {
    "nickname": "Continental Express",
    "destination": "TUL",
    "origin": "IAH",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.55
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "LAS",
    "flight_count": 55,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PVD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "United",
    "destination": "RIC",
    "origin": "ORD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "DEN",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.15976331360946747
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MCI",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.5294117647058824
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "DFW",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.23893805309734514
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "DFW",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1758957654723127
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "XNA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "TUS",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "HOU",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "LGB",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "AMA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "SJC",
    "origin": "LAS",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.19081272084805653
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.19148936170212766
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "GSO",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.9310344827586207
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "BNA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "IAD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.4251968503937008
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PHL",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.45
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ELP",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "ORF",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.9818181818181818
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PHX",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "CLT",
    "origin": "MDW",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "BHM",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SYR",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "OAK",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.4909090909090909
  },
  {
    "nickname": "America West",
    "destination": "LGB",
    "origin": "PHX",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CLE",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.38571428571428573
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "FLL",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.45
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PVD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.27
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "EWR",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "LGA",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7941176470588235
  },
  {
    "nickname": "American Eagle",
    "destination": "XNA",
    "origin": "ORD",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "AUS",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AMA",
    "origin": "ABQ",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "LAX",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.46551724137931033
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MKE",
    "flight_count": 54,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "RDU",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "MSY",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.41732283464566927
  },
  {
    "nickname": "Northwest",
    "destination": "PVD",
    "origin": "MSP",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "OAK",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.32919254658385094
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "DFW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.23660714285714285
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "ABQ",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.4649122807017544
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MCO",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5196078431372549
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "ISP",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.4108527131782946
  },
  {
    "nickname": "Northwest",
    "destination": "MSY",
    "origin": "MSP",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "SEA",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "DFW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "IND",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "CLT",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "MCO",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "BNA",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.6309523809523809
  },
  {
    "nickname": "Northwest",
    "destination": "PDX",
    "origin": "DTW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAT",
    "origin": "DTW",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MCO",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.7910447761194029
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "JAX",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "LAS",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "STL",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9814814814814815
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BUF",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MKE",
    "origin": "CLT",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "BWI",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9636363636363636
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "BOS",
    "flight_count": 53,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.33986928104575165
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SAT",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RNO",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "BWI",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "LGA",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7323943661971831
  },
  {
    "nickname": "American",
    "destination": "SYR",
    "origin": "ORD",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.896551724137931
  },
  {
    "nickname": "Continental Express",
    "destination": "ORF",
    "origin": "CLE",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "DCA",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SAN",
    "origin": "CLT",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "PWM",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "LAX",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.33548387096774196
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "RDU",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "DEN",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.325
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "JFK",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.3058823529411765
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "BTV",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "PHL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1925925925925926
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "STL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.896551724137931
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SYR",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.896551724137931
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "IND",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.48148148148148145
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ATL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.33548387096774196
  },
  {
    "nickname": "USAir",
    "destination": "SAN",
    "origin": "PHL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DTW",
    "origin": "DEN",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.29545454545454547
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "ATL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SEA",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "PHL",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.9454545454545454
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MCI",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "PHX",
    "flight_count": 52,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MSY",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9107142857142857
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "STL",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.9622641509433962
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "PDX",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "RIC",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "MIA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BOS",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PWM",
    "origin": "DCA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "CLE",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SEA",
    "origin": "CLT",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ALB",
    "origin": "EWR",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ALB",
    "origin": "ORD",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3953488372093023
  },
  {
    "nickname": "Continental",
    "destination": "MIA",
    "origin": "EWR",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "FLL",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6623376623376623
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BWI",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.8360655737704918
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SAN",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.4594594594594595
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "TPA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.4434782608695652
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "FLL",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.22566371681415928
  },
  {
    "nickname": "American Eagle",
    "destination": "LFT",
    "origin": "DFW",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6219512195121951
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "MEM",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "SAN",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "MCO",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9622641509433962
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MHT",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "BNA",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.8947368421052632
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "LAX",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.3591549295774648
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ALB",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.3953488372093023
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MCI",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BWI",
    "origin": "JFK",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9622641509433962
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "PHX",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "CLE",
    "flight_count": 51,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.24170616113744076
  },
  {
    "nickname": "United",
    "destination": "DFW",
    "origin": "SFO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.16447368421052633
  },
  {
    "nickname": "Delta",
    "destination": "MEM",
    "origin": "ATL",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6944444444444444
  },
  {
    "nickname": "Delta",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.20833333333333334
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "STT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 0.9259259259259259
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "RDU",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.6329113924050633
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "IAD",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "LAX",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.9803921568627451
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "LAS",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14705882352941177
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "MCO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9615384615384616
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "OKC",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.2717391304347826
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PIT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.29069767441860467
  },
  {
    "nickname": "American Eagle",
    "destination": "OKC",
    "origin": "DFW",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.25906735751295334
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "CLT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.3246753246753247
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "LAX",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "PIT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MIA",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.819672131147541
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "RDU",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.9259259259259259
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "AUS",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "RDU",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.2304147465437788
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "MCO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5617977528089888
  },
  {
    "nickname": "United",
    "destination": "BWI",
    "origin": "SFO",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6756756756756757
  },
  {
    "nickname": "Continental Express",
    "destination": "PVD",
    "origin": "EWR",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.8064516129032258
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.21008403361344538
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BHM",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CLT",
    "flight_count": 50,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.25125628140703515
  },
  {
    "nickname": "Continental Express",
    "destination": "CVG",
    "origin": "IAH",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.28823529411764703
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "DCA",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.5697674418604651
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "IAD",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "LAS",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.8596491228070176
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "SFO",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3402777777777778
  },
  {
    "nickname": "Continental Express",
    "destination": "PVD",
    "origin": "CLE",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9074074074074074
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "HOU",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.6901408450704225
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "CLE",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MSP",
    "origin": "CLE",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3983739837398374
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MCO",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.4803921568627451
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "ABQ",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "LAX",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.7424242424242424
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "OMA",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.7424242424242424
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MIA",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "HOU",
    "origin": "DFW",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6901408450704225
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "LFT",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 0.6282051282051282
  },
  {
    "nickname": "United",
    "destination": "OMA",
    "origin": "DEN",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BTV",
    "origin": "JFK",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SFO",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BTV",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "PHX",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "MCI",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DEN",
    "origin": "IAH",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4152542372881356
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "PVD",
    "flight_count": 49,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ISP",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "PIT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "PWM",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9056603773584906
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "PWM",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.9056603773584906
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5052631578947369
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MSP",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.19123505976095617
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SDF",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SAV",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "PDX",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CVG",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MOB",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SEA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "CLT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "SJC",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.1322314049586777
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "SEA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ALB",
    "origin": "CLE",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AMA",
    "origin": "IAH",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "OMA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "BHM",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "PIT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MOB",
    "origin": "IAH",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000365400621181056,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "HOU",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.1951219512195122
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "ISP",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "IAD",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.5217391304347826
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AMA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "MSY",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.9795918367346939
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MCI",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.47058823529411764
  },
  {
    "nickname": "USAir",
    "destination": "RDU",
    "origin": "DCA",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "BOS",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8727272727272727
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "DFW",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1875
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "RSW",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8727272727272727
  },
  {
    "nickname": "Continental Express",
    "destination": "BWI",
    "origin": "EWR",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.96
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "PIT",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "MEM",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SDF",
    "origin": "EWR",
    "flight_count": 48,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "MCI",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "BOS",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.49473684210526314
  },
  {
    "nickname": "American Eagle",
    "destination": "MKE",
    "origin": "ORD",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9791666666666666
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SAN",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAT",
    "origin": "ATL",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "LEX",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "SDF",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HOU",
    "origin": "LGA",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.44761904761904764
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "CVG",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7966101694915254
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "PHX",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "OMA",
    "origin": "IAH",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.734375
  },
  {
    "nickname": "Continental Express",
    "destination": "IND",
    "origin": "IAH",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5662650602409639
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.41228070175438597
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "HNL",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.5280898876404494
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "STL",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MHT",
    "origin": "CLE",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.9591836734693877
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "BOS",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.3381294964028777
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "SAN",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.47959183673469385
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "IAH",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8867924528301887
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ORF",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "CLT",
    "origin": "ORD",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2315270935960591
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "MIA",
    "flight_count": 47,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SDF",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "DFW",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3458646616541353
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SEA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.31724137931034485
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "TPA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "CVG",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "MKE",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.9787234042553191
  },
  {
    "nickname": "Continental Express",
    "destination": "SDF",
    "origin": "CLE",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "BHM",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "ELP",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.27710843373493976
  },
  {
    "nickname": "Delta",
    "destination": "ISP",
    "origin": "MCO",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3108108108108108
  },
  {
    "nickname": "Continental Express",
    "destination": "BUF",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.647887323943662
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "SAT",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "AVL",
    "origin": "CLT",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "AVL",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "RSW",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "JAN",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BNA",
    "origin": "DCA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "PBI",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.11764705882352941
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2967741935483871
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ATL",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.14556962025316456
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "MCI",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.09292929292929293
  },
  {
    "nickname": "Continental Express",
    "destination": "PIT",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.26900584795321636
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PSP",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BDL",
    "origin": "TPA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.6216216216216216
  },
  {
    "nickname": "Southwest",
    "destination": "BOI",
    "origin": "OAK",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ATL",
    "origin": "ORD",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.13609467455621302
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "LGA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DEN",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.27710843373493976
  },
  {
    "nickname": "American",
    "destination": "RSW",
    "origin": "DFW",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "RDU",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6133333333333333
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "ANC",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "DCA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "ATL",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SNA",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "LAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.37398373983739835
  },
  {
    "nickname": "Continental Express",
    "destination": "ROC",
    "origin": "EWR",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9787234042553191
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "JAX",
    "flight_count": 46,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CHS",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "COS",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.6716417910447762
  },
  {
    "nickname": "Continental Express",
    "destination": "ROC",
    "origin": "CLE",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BUF",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "RSW",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "PHL",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "JAX",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.5172413793103449
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "CVG",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7377049180327869
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MSY",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SDF",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SAN",
    "origin": "JFK",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "American",
    "destination": "PSP",
    "origin": "DFW",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "EWR",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "MCI",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PVD",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "BNA",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.24861878453038674
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "TUL",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.4326923076923077
  },
  {
    "nickname": "Continental Express",
    "destination": "COS",
    "origin": "IAH",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6716417910447762
  },
  {
    "nickname": "United",
    "destination": "RSW",
    "origin": "ORD",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "SLC",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "PHX",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MSY",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ILE",
    "origin": "DFW",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0012122020607435032,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1079136690647482
  },
  {
    "nickname": "USAir",
    "destination": "SRQ",
    "origin": "CLT",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "BOS",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.9782608695652174
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "MCI",
    "origin": "MCO",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.24725274725274726
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "ILE",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.10843373493975904
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "RIC",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.8035714285714286
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "PHL",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Continental",
    "destination": "TUL",
    "origin": "IAH",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.45
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MCO",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SFO",
    "flight_count": 45,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.27607361963190186
  },
  {
    "nickname": "America West",
    "destination": "SAN",
    "origin": "LAS",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.08888888888888889
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "JAX",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "ATL",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SFO",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.2634730538922156
  },
  {
    "nickname": "Delta",
    "destination": "BNA",
    "origin": "MCO",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.22797927461139897
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SRQ",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "RDU",
    "origin": "JFK",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7333333333333333
  },
  {
    "nickname": "Northwest",
    "destination": "JAX",
    "origin": "MSP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "OAK",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.19298245614035087
  },
  {
    "nickname": "American Eagle",
    "destination": "CRP",
    "origin": "DFW",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GSP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.8301886792452831
  },
  {
    "nickname": "Continental Express",
    "destination": "SAV",
    "origin": "EWR",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ISP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PDX",
    "origin": "LAX",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.18565400843881857
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "IAD",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.4782608695652174
  },
  {
    "nickname": "Alaska",
    "destination": "RNO",
    "origin": "LAX",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.3142857142857143
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TYS",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "BNA",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.27848101265822783
  },
  {
    "nickname": "Delta",
    "destination": "GSP",
    "origin": "ATL",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8148148148148148
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.6027397260273972
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "GSP",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ISP",
    "origin": "CLE",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "SFO",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3120567375886525
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CHS",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.9565217391304348
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CMH",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.6111111111111112
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "CLT",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "DTW",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "IAD",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.8627450980392157
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MKE",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "LGA",
    "flight_count": 44,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7213114754098361
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "SFO",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6935483870967742
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "TPA",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ALB",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "ORF",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CLE",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.31386861313868614
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "SYR",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SFO",
    "origin": "PHX",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.14776632302405499
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "MCI",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BPT",
    "origin": "DFW",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DTW",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "BDL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.5512820512820513
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PHX",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.9347826086956522
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "ORD",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.19545454545454546
  },
  {
    "nickname": "Delta",
    "destination": "ISP",
    "origin": "FLL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.3706896551724138
  },
  {
    "nickname": "Northwest",
    "destination": "MSY",
    "origin": "MEM",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CRP",
    "origin": "HOU",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "MCO",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.5657894736842105
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FLL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RIC",
    "origin": "LGA",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8431372549019608
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "MSY",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.7049180327868853
  },
  {
    "nickname": "United",
    "destination": "PIT",
    "origin": "ORD",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.30935251798561153
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "FNT",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "ABQ",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "CVG",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9347826086956522
  },
  {
    "nickname": "Southwest",
    "destination": "SFO",
    "origin": "SAN",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.24431818181818182
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CVG",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.33076923076923076
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SAN",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SAT",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "FLL",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MKE",
    "origin": "EWR",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.4387755102040816
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SYR",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BHM",
    "flight_count": 43,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DTW",
    "origin": "PHX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.19811320754716982
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "CRP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "OAK",
    "origin": "PDX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.17142857142857143
  },
  {
    "nickname": "USAir",
    "destination": "STL",
    "origin": "PIT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BWI",
    "origin": "CLE",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.22950819672131148
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BUF",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "ONT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "LGA",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "RDU",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "Northwest",
    "destination": "FLL",
    "origin": "MSP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "DEN",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.6774193548387096
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BUF",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.29577464788732394
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "RSW",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MKE",
    "origin": "PIT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "JAN",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MKE",
    "origin": "CVG",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "America West",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.15849056603773584
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "DFW",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CMH",
    "origin": "EWR",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6176470588235294
  },
  {
    "nickname": "Northwest",
    "destination": "IAD",
    "origin": "MSP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "EWR",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.2441860465116279
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PIT",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.26582278481012656
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "JFK",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "BOI",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TYS",
    "origin": "EWR",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CRP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PHX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ALB",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.32558139534883723
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "PHL",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1926605504587156
  },
  {
    "nickname": "United",
    "destination": "ALB",
    "origin": "ORD",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.32558139534883723
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "JAX",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.4827586206896552
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "MCI",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSO",
    "origin": "MSP",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "DCA",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MIA",
    "flight_count": 42,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SNA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BWI",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "BNA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CHS",
    "origin": "EWR",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9534883720930233
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LCH",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00011890020213034362,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "IND",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.37962962962962965
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2887323943661972
  },
  {
    "nickname": "Continental Express",
    "destination": "JAX",
    "origin": "IAH",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5125
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "CLE",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.30597014925373134
  },
  {
    "nickname": "Continental",
    "destination": "RSW",
    "origin": "CLE",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ALB",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MKE",
    "origin": "PHL",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "STL",
    "origin": "CLE",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3082706766917293
  },
  {
    "nickname": "Northwest",
    "destination": "SJC",
    "origin": "DTW",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.19806763285024154
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "ORD",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3565217391304348
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "BWI",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9761904761904762
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "STL",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.3904761904761905
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "FLL",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BUF",
    "origin": "ORD",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2887323943661972
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MSO",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00011890020213034362,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SNA",
    "origin": "DTW",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "SFO",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.1583011583011583
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ORF",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "SNA",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.2679738562091503
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "RDU",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "BPT",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00022330037961064533,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MSY",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.33064516129032256
  },
  {
    "nickname": "Continental Express",
    "destination": "LCH",
    "origin": "IAH",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00011890020213034362,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "LIT",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "MAF",
    "flight_count": 41,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MSP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.19607843137254902
  },
  {
    "nickname": "American Eagle",
    "destination": "OMA",
    "origin": "ORD",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6060606060606061
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "SAT",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.9302325581395349
  },
  {
    "nickname": "American Eagle",
    "destination": "HPN",
    "origin": "BOS",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "PHL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.12578616352201258
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "OMA",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.5970149253731343
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "PHL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08908685968819599
  },
  {
    "nickname": "Northwest",
    "destination": "PSP",
    "origin": "MSP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "OAK",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.0947867298578199
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "MIA",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.3053435114503817
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "MHT",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SAN",
    "origin": "PIT",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "AUS",
    "origin": "ATL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "RSW",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Continental Express",
    "destination": "PWM",
    "origin": "EWR",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "HPN",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "OKC",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.38095238095238093
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "DLH",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "PSP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "PHL",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.7407407407407407
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "ABQ",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ELP",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.6896551724137931
  },
  {
    "nickname": "ATA",
    "destination": "RSW",
    "origin": "MDW",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "American Eagle",
    "destination": "MSP",
    "origin": "DFW",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.19801980198019803
  },
  {
    "nickname": "Continental",
    "destination": "OKC",
    "origin": "IAH",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.37735849056603776
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SAN",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "ORD",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.33613445378151263
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "CVG",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.975609756097561
  },
  {
    "nickname": "American Eagle",
    "destination": "ALB",
    "origin": "JFK",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ELP",
    "origin": "IAH",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6896551724137931
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SFO",
    "flight_count": 40,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "JAX",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4875
  },
  {
    "nickname": "Continental",
    "destination": "DTW",
    "origin": "EWR",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.1387900355871886
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.12786885245901639
  },
  {
    "nickname": "American Eagle",
    "destination": "PHL",
    "origin": "BOS",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.08441558441558442
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6724137931034483
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "DFW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.10344827586206896
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GSP",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "BUF",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SJC",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MSY",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SHV",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CVG",
    "origin": "CLE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AEX",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0002320003944006705,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "JAX",
    "origin": "DTW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MKE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "ALB",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MDW",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "MCI",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MCI",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.6610169491525424
  },
  {
    "nickname": "Continental Express",
    "destination": "MKE",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "LBB",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.48148148148148145
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "DEN",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.975
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "STL",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "ROC",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "ORD",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "IAD",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DEN",
    "origin": "CLE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5342465753424658
  },
  {
    "nickname": "Northwest",
    "destination": "DLH",
    "origin": "MSP",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00011310019227032685,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "OAK",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MKE",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.11470588235294117
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "SEA",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PWM",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ICT",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "HNL",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.975
  },
  {
    "nickname": "Continental Express",
    "destination": "AEX",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SHV",
    "origin": "IAH",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ICT",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "LAS",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7222222222222222
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "CVG",
    "flight_count": 39,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "DFW",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "SAN",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.07480314960629922
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BNA",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.1919191919191919
  },
  {
    "nickname": "United",
    "destination": "ABQ",
    "origin": "DEN",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BUF",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.6031746031746031
  },
  {
    "nickname": "Continental Express",
    "destination": "GSP",
    "origin": "IAH",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.24050632911392406
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "ELP",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "CLT",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "ELP",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "BWI",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "Jetblue",
    "destination": "DEN",
    "origin": "JFK",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "LAX",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.09223300970873786
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "RDU",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.6440677966101694
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SJC",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.1630901287553648
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "FLL",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MDW",
    "origin": "DEN",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.2375
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BTV",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MKE",
    "origin": "DFW",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RDU",
    "origin": "IAH",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.6440677966101694
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "SJC",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.2375
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BHM",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "LAS",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9743589743589743
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "LAS",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MHT",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.95
  },
  {
    "nickname": "Comair",
    "destination": "DTW",
    "origin": "CVG",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ISP",
    "flight_count": 38,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.2814814814814815
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MKE",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BHM",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.5692307692307692
  },
  {
    "nickname": "Continental Express",
    "destination": "GPT",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008033013656123215,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9736842105263158
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GPT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008062013705423299,
    "carriers as a percentage of route": 0.9736842105263158
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "IND",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.37373737373737376
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ALB",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "PIT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "IND",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.8409090909090909
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "LGA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "LGA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "TPA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "MSY",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "RSW",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.15546218487394958
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "JAX",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "PHX",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "SMF",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.7708333333333334
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "ORD",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3894736842105263
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "CMH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TYS",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DFW",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.16517857142857142
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MHT",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "TPA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.925
  },
  {
    "nickname": "United",
    "destination": "FLL",
    "origin": "DEN",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SMF",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.0968586387434555
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SLC",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.9736842105263158
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "LAS",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IAH",
    "origin": "MIA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.31092436974789917
  },
  {
    "nickname": "American",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.15416666666666667
  },
  {
    "nickname": "Continental",
    "destination": "MCI",
    "origin": "IAH",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.40217391304347827
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SJC",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ONT",
    "origin": "BNA",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "MCI",
    "flight_count": 37,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DTW",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.12857142857142856
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MKE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.7659574468085106
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ABQ",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ALB",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "ABQ",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "IND",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CMH",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.72
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "PIT",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "OAK",
    "origin": "LAS",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.096
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "CAE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MKE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "BOI",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "IAD",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "SAT",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "BOI",
    "origin": "PHX",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.1592920353982301
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "BHM",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CHS",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "SLC",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "EWR",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16744186046511628
  },
  {
    "nickname": "Continental",
    "destination": "IND",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.43373493975903615
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "STL",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.6792452830188679
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BPT",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00022330037961064533,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ALB",
    "origin": "ORD",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "SFO",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BPT",
    "origin": "IAH",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "AUS",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "GEG",
    "flight_count": 36,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "CVG",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "RDU",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "ABQ",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "TPA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "TPA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BDL",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.44871794871794873
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MDW",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.2229299363057325
  },
  {
    "nickname": "ATA",
    "destination": "PIT",
    "origin": "MDW",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.7
  },
  {
    "nickname": "USAir",
    "destination": "CHS",
    "origin": "DCA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "BWI",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SJC",
    "origin": "IAH",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SJC",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "TUS",
    "origin": "SEA",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "JAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1881720430107527
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "STL",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.7291666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "STL",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.36082474226804123
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "DTW",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PIT",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.6730769230769231
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PWM",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "SDF",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.5833333333333334
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.21875
  },
  {
    "nickname": "Delta",
    "destination": "SDF",
    "origin": "MCO",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6481481481481481
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.032618825722273995
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "GSP",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MCI",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ORF",
    "flight_count": 35,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSY",
    "origin": "DTW",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "LAS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SDF",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "ABQ",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "SLC",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "CLE",
    "origin": "MSP",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.37777777777777777
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "RNO",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.2556390977443609
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BWI",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DCA",
    "origin": "IAH",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3541666666666667
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "AUS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.19318181818181818
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "TYS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "BWI",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "DFW",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MCO",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.26356589147286824
  },
  {
    "nickname": "Continental Express",
    "destination": "BUF",
    "origin": "CLE",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "CVG",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.21518987341772153
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "MCO",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "LIT",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "ORD",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.9714285714285714
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.11564625850340136
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LGA",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8717948717948718
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "TUS",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCI",
    "origin": "CVG",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6296296296296297
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "MDW",
    "flight_count": 34,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PHX",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.16751269035532995
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "SAT",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.9428571428571428
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "HNL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MAF",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.2088607594936709
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CHS",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCI",
    "origin": "ATL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.4074074074074074
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MDT",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TUL",
    "origin": "ATL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MCI",
    "origin": "CLE",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IND",
    "origin": "EWR",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.3173076923076923
  },
  {
    "nickname": "American",
    "destination": "MDW",
    "origin": "DFW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.19411764705882353
  },
  {
    "nickname": "Delta",
    "destination": "ABQ",
    "origin": "ATL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MSP",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.08967391304347826
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "CMH",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.7021276595744681
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "RSW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8918918918918919
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "RDU",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MDW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.19642857142857142
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SNA",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IND",
    "origin": "DEN",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.8461538461538461
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "IND",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "PSP",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "SLC",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DTW",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.1783783783783784
  },
  {
    "nickname": "ATA",
    "destination": "RSW",
    "origin": "IND",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "RDU",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.717391304347826
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PIT",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.10509554140127389
  },
  {
    "nickname": "United",
    "destination": "TUS",
    "origin": "PHX",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.22758620689655173
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "TUS",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.21568627450980393
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "GSO",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "TUL",
    "flight_count": 33,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "IND",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.7804878048780488
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "PIT",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "MCO",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3047619047619048
  },
  {
    "nickname": "Delta",
    "destination": "MKE",
    "origin": "ATL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9411764705882353
  },
  {
    "nickname": "Continental Express",
    "destination": "JAN",
    "origin": "IAH",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "JAN",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.03686635944700461
  },
  {
    "nickname": "Delta",
    "destination": "GSO",
    "origin": "ATL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "PHL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "SDF",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "DFW",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.22535211267605634
  },
  {
    "nickname": "United",
    "destination": "ROC",
    "origin": "ORD",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.45714285714285713
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.3950617283950617
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "COS",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "PHL",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.31683168316831684
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "SYR",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.32323232323232326
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "AUS",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "SFO",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.8205128205128205
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "OAK",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GSO",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "PHX",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.04060913705583756
  },
  {
    "nickname": "American",
    "destination": "LGB",
    "origin": "ORD",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ONT",
    "origin": "LAS",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.10596026490066225
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "CVG",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "TPA",
    "origin": "IAH",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MSP",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.0896358543417367
  },
  {
    "nickname": "Continental Express",
    "destination": "SAV",
    "origin": "IAH",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ALB",
    "origin": "CVG",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9696969696969697
  },
  {
    "nickname": "Comair",
    "destination": "MDT",
    "origin": "CVG",
    "flight_count": 32,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FLL",
    "origin": "MEM",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MKE",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.9117647058823529
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "AMA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0008642014691424975,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BWI",
    "origin": "IAH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CMH",
    "origin": "PHX",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.96875
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "CVG",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7209302325581395
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "LAS",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.9393939393939394
  },
  {
    "nickname": "Alaska",
    "destination": "BOI",
    "origin": "SEA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.22794117647058823
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CMH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.8157894736842105
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "HSV",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "TPA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.7045454545454546
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "SDF",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "ONT",
    "origin": "JFK",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "IAH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ROC",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.4492753623188406
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "LIT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MEM",
    "origin": "CLT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PWM",
    "origin": "PIT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "JFK",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2421875
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "BOI",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 0.2246376811594203
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "MCO",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.10032362459546926
  },
  {
    "nickname": "ATA",
    "destination": "SFO",
    "origin": "MDW",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BTV",
    "origin": "EWR",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "BDL",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.1901840490797546
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "ONT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LFT",
    "origin": "DFW",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3780487804878049
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "ROC",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.2421875
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DCA",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.30097087378640774
  },
  {
    "nickname": "Delta",
    "destination": "MSP",
    "origin": "ATL",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.12653061224489795
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "MEM",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "GRR",
    "origin": "ORD",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6888888888888889
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "GRR",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.6888888888888889
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ALB",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.96875
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "SAT",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.20945945945945946
  },
  {
    "nickname": "America West",
    "destination": "SAT",
    "origin": "PHX",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.17318435754189945
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "GEG",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "HOU",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "AUS",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.09117647058823529
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GRR",
    "flight_count": 31,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.6595744680851063
  },
  {
    "nickname": "Continental Express",
    "destination": "PHL",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SMF",
    "origin": "IAD",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "TUL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "TUL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 0.26548672566371684
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "PIT",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Delta",
    "destination": "MSP",
    "origin": "CVG",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "Southwest",
    "destination": "AMA",
    "origin": "LAS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0008584014592824808,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "BNA",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "American Eagle",
    "destination": "SYR",
    "origin": "JFK",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.30927835051546393
  },
  {
    "nickname": "Comair",
    "destination": "GRR",
    "origin": "CVG",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6521739130434783
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "LAS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.11450381679389313
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "MCI",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SFO",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PHL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1271186440677966
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.17964071856287425
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "COS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "PIT",
    "origin": "JFK",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.7317073170731707
  },
  {
    "nickname": "Southwest",
    "destination": "BHM",
    "origin": "MCO",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "RSW",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MSP",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16304347826086957
  },
  {
    "nickname": "Southwest",
    "destination": "IAH",
    "origin": "DAL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 0.3488372093023256
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.2631578947368421
  },
  {
    "nickname": "Continental Express",
    "destination": "BHM",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "JAX",
    "origin": "EWR",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5454545454545454
  },
  {
    "nickname": "America West",
    "destination": "COS",
    "origin": "PHX",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "DCA",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.7317073170731707
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "ATL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.2054794520547945
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LBB",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PHL",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.18072289156626506
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "LAS",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "IAH",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3488372093023256
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "RDU",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "FAI",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2631578947368421
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "LAX",
    "flight_count": 30,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "PHL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.09508196721311475
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "PBI",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.5918367346938775
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "ABE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "PBI",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.17365269461077845
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SJU",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSN",
    "origin": "DTW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CHS",
    "origin": "PHL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ABQ",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RSW",
    "origin": "EWR",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6304347826086957
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "IAD",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PBI",
    "origin": "ORD",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5918367346938775
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "IND",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.32222222222222224
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "IND",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "PHL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "TPA",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "TYS",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RDU",
    "origin": "EWR",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.38666666666666666
  },
  {
    "nickname": "Continental Express",
    "destination": "BNA",
    "origin": "CLE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.18012422360248448
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ABE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "COS",
    "origin": "ATL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SAN",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "MHT",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SEA",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.9666666666666667
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "STL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.31868131868131866
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "COS",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "CVG",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.725
  },
  {
    "nickname": "Continental Express",
    "destination": "MHT",
    "origin": "EWR",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.90625
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SAN",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "LFT",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 0.3717948717948718
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "STL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MHT",
    "origin": "MSP",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "LAX",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.32222222222222224
  },
  {
    "nickname": "Comair",
    "destination": "FWA",
    "origin": "CVG",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DTW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "LGB",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "STT",
    "origin": "ORD",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "JFK",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.17365269461077845
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "MAF",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "PIE",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BNA",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.7435897435897436
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ATL",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.27102803738317754
  },
  {
    "nickname": "ATA",
    "destination": "PHX",
    "origin": "MDW",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.13744075829383887
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "RDU",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.3670886075949367
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "CMH",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.9666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "CVG",
    "flight_count": 29,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "CMH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.3888888888888889
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "RSW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.6363636363636364
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "HNL",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.3146067415730337
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GSP",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "PDX",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.3218390804597701
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "DCA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9655172413793104
  },
  {
    "nickname": "Continental Express",
    "destination": "MEM",
    "origin": "EWR",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.7567567567567568
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "RIC",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "PIT",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FWA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "LEX",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "SFO",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "JFK",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9032258064516129
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "BOS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "Alaska",
    "destination": "FAI",
    "origin": "SEA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BHM",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.4307692307692308
  },
  {
    "nickname": "Southwest",
    "destination": "ELP",
    "origin": "LBB",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "FLL",
    "origin": "MDW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.18666666666666668
  },
  {
    "nickname": "America West",
    "destination": "MSP",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.08115942028985507
  },
  {
    "nickname": "American Eagle",
    "destination": "DCA",
    "origin": "JFK",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9655172413793104
  },
  {
    "nickname": "Continental Express",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2413793103448276
  },
  {
    "nickname": "ATA",
    "destination": "LAS",
    "origin": "MDW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.10606060606060606
  },
  {
    "nickname": "Continental Express",
    "destination": "CAE",
    "origin": "IAH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "ORD",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.29473684210526313
  },
  {
    "nickname": "American",
    "destination": "ROC",
    "origin": "ORD",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "MDW",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "CMH",
    "origin": "DEN",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "STL",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.7567567567567568
  },
  {
    "nickname": "Delta",
    "destination": "PHL",
    "origin": "ATL",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.1339712918660287
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "ROC",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.4057971014492754
  },
  {
    "nickname": "Southwest",
    "destination": "LBB",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012296020903235535,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "MCI",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BNA",
    "origin": "PBI",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TUL",
    "origin": "LAS",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SAV",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "TPA",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.3783783783783784
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "CVG",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "CMH",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.2828282828282828
  },
  {
    "nickname": "USAir",
    "destination": "BHM",
    "origin": "CLT",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "BHM",
    "flight_count": 28,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ONT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "SJU",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MCO",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SEA",
    "origin": "MDW",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.2755102040816326
  },
  {
    "nickname": "Delta",
    "destination": "ONT",
    "origin": "ATL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "TPA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "GSO",
    "origin": "DFW",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "Continental Express",
    "destination": "TYS",
    "origin": "CLE",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "LGA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "PIT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "GRR",
    "origin": "EWR",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "STL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.84375
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SDF",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "CLT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "MSY",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MCI",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TOL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 0.7941176470588235
  },
  {
    "nickname": "Continental Express",
    "destination": "HSV",
    "origin": "IAH",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "PDX",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SRQ",
    "origin": "ATL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "FLL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.18493150684931506
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "LAS",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "MIA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.7105263157894737
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BDL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "CVG",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SEA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.2903225806451613
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "JAX",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BDL",
    "origin": "JFK",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "CLE",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7105263157894737
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "ROC",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "AGS",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002192403727086336,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CMH",
    "origin": "ORD",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "DCA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "CVG",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LEX",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SLC",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.30337078651685395
  },
  {
    "nickname": "American Eagle",
    "destination": "PVD",
    "origin": "LGA",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "OAK",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "GSO",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.9642857142857143
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BTV",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "CLE",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3698630136986301
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BDL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BWI",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.675
  },
  {
    "nickname": "Delta",
    "destination": "ABQ",
    "origin": "DFW",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.14361702127659576
  },
  {
    "nickname": "Comair",
    "destination": "TOL",
    "origin": "CVG",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7941176470588235
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PIT",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "PHL",
    "flight_count": 27,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08881578947368421
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "BTV",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 0.9629629629629629
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FNT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "CMH",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.26262626262626265
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "LIT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "DAY",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BDL",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.8666666666666667
  },
  {
    "nickname": "American Eagle",
    "destination": "LGA",
    "origin": "PVD",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MSY",
    "origin": "PHX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.28888888888888886
  },
  {
    "nickname": "Continental Express",
    "destination": "BDL",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BHM",
    "origin": "CVG",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5652173913043478
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DEN",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.27956989247311825
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MHT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DEN",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.14207650273224043
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "FLL",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.33766233766233766
  },
  {
    "nickname": "Continental Express",
    "destination": "DAY",
    "origin": "IAH",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "LAS",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORF",
    "origin": "ATL",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9629629629629629
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "SFO",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.6046511627906976
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "TPA",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "AEX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0002320003944006705,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "JAX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.5306122448979592
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "IAD",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.65
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "TPA",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "BOS",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "AUS",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "AUS",
    "origin": "DTW",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "CLT",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CAE",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.08024691358024691
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "BHM",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CMH",
    "origin": "EWR",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.38235294117647056
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "PDX",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SRQ",
    "flight_count": 26,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "OGG",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ORD",
    "origin": "MEM",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PNS",
    "origin": "IAH",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.22935779816513763
  },
  {
    "nickname": "American Eagle",
    "destination": "XNA",
    "origin": "LAX",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LIT",
    "origin": "CVG",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "ABQ",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "SDF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.4166666666666667
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MSP",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Jetblue",
    "destination": "MSY",
    "origin": "JFK",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "OMA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.373134328358209
  },
  {
    "nickname": "Delta",
    "destination": "SMF",
    "origin": "ATL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BHM",
    "origin": "LGA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "LGA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.6410256410256411
  },
  {
    "nickname": "American Eagle",
    "destination": "SDF",
    "origin": "ORD",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FSD",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00010150017255029334,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RSW",
    "origin": "ORD",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SMF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LIT",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BNA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.15432098765432098
  },
  {
    "nickname": "Continental Express",
    "destination": "BTV",
    "origin": "CLE",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "CHS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAN",
    "origin": "SLC",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "ATL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.14204545454545456
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "MSY",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.14705882352941177
  },
  {
    "nickname": "ATA",
    "destination": "MIA",
    "origin": "MDW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "BTV",
    "origin": "BOS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8620689655172413
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "RSW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.1497005988023952
  },
  {
    "nickname": "ATA",
    "destination": "SRQ",
    "origin": "IND",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OGG",
    "origin": "DFW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BUF",
    "origin": "EWR",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.352112676056338
  },
  {
    "nickname": "Northwest",
    "destination": "CMH",
    "origin": "DTW",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BOS",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "IND",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "PDX",
    "origin": "HNL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MSY",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "LAX",
    "origin": "XNA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "SEA",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.06476683937823834
  },
  {
    "nickname": "Continental Express",
    "destination": "JAX",
    "origin": "EWR",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.45454545454545453
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ROC",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BUF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.3968253968253968
  },
  {
    "nickname": "Northwest",
    "destination": "FSD",
    "origin": "MSP",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00010150017255029334,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "STL",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.5952380952380952
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "SDF",
    "flight_count": 25,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OMA",
    "origin": "ORD",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.36363636363636365
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "BOS",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "DEN",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "CMH",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.6857142857142857
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HSV",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RDU",
    "origin": "MCO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.2696629213483146
  },
  {
    "nickname": "USAir",
    "destination": "CMH",
    "origin": "DCA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.6486486486486487
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MIA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.8275862068965517
  },
  {
    "nickname": "American",
    "destination": "SAN",
    "origin": "STL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.5217391304347826
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "LAX",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "RDU",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SLC",
    "origin": "JFK",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6153846153846154
  },
  {
    "nickname": "Comair",
    "destination": "MSP",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "SFO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.32432432432432434
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CAE",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "GSO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.42105263157894735
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BHM",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SAN",
    "origin": "SAT",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BHM",
    "origin": "DFW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "ATL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DAY",
    "origin": "DFW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.3157894736842105
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "HRL",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "DAY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "RNO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.06091370558375635
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "SLC",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DAY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DAY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAD",
    "origin": "IAH",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.631578947368421
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "MIA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "DTW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.12371134020618557
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "ICT",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 0.25263157894736843
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "DEN",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.21238938053097345
  },
  {
    "nickname": "ATA",
    "destination": "MCO",
    "origin": "MDW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.14814814814814814
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MSY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GSO",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.6857142857142857
  },
  {
    "nickname": "American",
    "destination": "ICT",
    "origin": "DFW",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "BNA",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BUF",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.16901408450704225
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "MSY",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.24242424242424243
  },
  {
    "nickname": "Comair",
    "destination": "PIT",
    "origin": "CVG",
    "flight_count": 24,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IND",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6052631578947368
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "ORF",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.02213666987487969
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "ROA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "FLL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8518518518518519
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "SJC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.2875
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PNS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.21495327102803738
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SRQ",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "PIT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "XNA",
    "origin": "IAH",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "TPA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.46938775510204084
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SLC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.71875
  },
  {
    "nickname": "Continental Express",
    "destination": "PIT",
    "origin": "IAH",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1377245508982036
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "XNA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JAX",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5476190476190477
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "JAX",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.46938775510204084
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "IAD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ORF",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "Northwest",
    "destination": "BNA",
    "origin": "MSP",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BUF",
    "origin": "ORD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1619718309859155
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BDL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.6052631578947368
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BNA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MSN",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OGG",
    "origin": "ORD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "RNO",
    "origin": "SFO",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SRQ",
    "origin": "EWR",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "United",
    "destination": "MSP",
    "origin": "DEN",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.060526315789473685
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ANC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "JAX",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.6052631578947368
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "LRD",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0003103005275108968,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MSP",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.13609467455621302
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "PHL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "LAS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.71875
  },
  {
    "nickname": "Comair",
    "destination": "SAV",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "CLT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AEX",
    "origin": "DFW",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DAY",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ATL",
    "origin": "MEM",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.8214285714285714
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "TPA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.46938775510204084
  },
  {
    "nickname": "Continental Express",
    "destination": "BDL",
    "origin": "CLE",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5609756097560976
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6764705882352942
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TUL",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GRB",
    "origin": "MSP",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0001363002317103939,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "OGG",
    "origin": "SEA",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "ANC",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.07098765432098765
  },
  {
    "nickname": "Southwest",
    "destination": "LIT",
    "origin": "BWI",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "LAX",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.14375
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "IND",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.8214285714285714
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "BOS",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "CLT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TUL",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "JFK",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.71875
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "SRQ",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.9583333333333334
  },
  {
    "nickname": "Comair",
    "destination": "CAE",
    "origin": "CVG",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "LIT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LRD",
    "origin": "IAH",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0003074005225808884,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CAE",
    "origin": "CLT",
    "flight_count": 23,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "SEA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.06875
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "LGA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SDF",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4583333333333333
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "SJC",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.059782608695652176
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "CLT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "KOA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "EWR",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4888888888888889
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "DFW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5641025641025641
  },
  {
    "nickname": "Continental Express",
    "destination": "LEX",
    "origin": "IAH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LAN",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "LAX",
    "origin": "MDW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.16793893129770993
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "ATL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.3055555555555556
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "CAE",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DSM",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "XNA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.125
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "DAY",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CAE",
    "origin": "LGA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "PVD",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MSY",
    "origin": "CLE",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.7333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "DSM",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "PHL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1527777777777778
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "JAX",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.7096774193548387
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MSY",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.8148148148148148
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LAN",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "MKE",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "XNA",
    "origin": "DFW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.1286549707602339
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MAF",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "PIT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "HOU",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.30985915492957744
  },
  {
    "nickname": "America West",
    "destination": "DTW",
    "origin": "PHX",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.10377358490566038
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MEM",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.6470588235294118
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CMH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "KOA",
    "origin": "OGG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "RAP",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00006380010846018439,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BNA",
    "origin": "MIA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CLT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MCI",
    "origin": "EWR",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.5641025641025641
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "LGA",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "LGA",
    "origin": "IND",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "COS",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.3283582089552239
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "CVG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6111111111111112
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "PIT",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AGS",
    "origin": "EWR",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SLC",
    "origin": "IAH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.7096774193548387
  },
  {
    "nickname": "Continental",
    "destination": "COS",
    "origin": "IAH",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3283582089552239
  },
  {
    "nickname": "USAir",
    "destination": "LAX",
    "origin": "BWI",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.16923076923076924
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "IND",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "HOU",
    "origin": "DFW",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.30985915492957744
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GTR",
    "origin": "ATL",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0001073001824103101,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "OGG",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "BOS",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5116279069767442
  },
  {
    "nickname": "American Eagle",
    "destination": "PVD",
    "origin": "JFK",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "IND",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.25882352941176473
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "LAX",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.18032786885245902
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SDF",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "RAP",
    "origin": "MSP",
    "flight_count": 22,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006380010846018439,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "HSV",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "DFW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.08235294117647059
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SAN",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "MAF",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCI",
    "origin": "DTW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "DCA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.19811320754716982
  },
  {
    "nickname": "Continental Express",
    "destination": "EFD",
    "origin": "IAH",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000060900103530176,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SMF",
    "origin": "IAH",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DEN",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.14685314685314685
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "BOS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.4883720930232558
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "OMA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.14788732394366197
  },
  {
    "nickname": "Comair",
    "destination": "ROC",
    "origin": "ATL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "SRQ",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "AVL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "TPA",
    "origin": "BOS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.2441860465116279
  },
  {
    "nickname": "USAir",
    "destination": "AVP",
    "origin": "PIT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "RDU",
    "origin": "IAH",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3559322033898305
  },
  {
    "nickname": "United",
    "destination": "STT",
    "origin": "IAD",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.13636363636363635
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "AUS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.9545454545454546
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "SAT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "TPA",
    "origin": "EWR",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4666666666666667
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "MCO",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.12280701754385964
  },
  {
    "nickname": "Continental Express",
    "destination": "DAB",
    "origin": "EWR",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.84
  },
  {
    "nickname": "Delta",
    "destination": "OMA",
    "origin": "ATL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "EVV",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000121800207060352,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "PHL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.14583333333333334
  },
  {
    "nickname": "Comair",
    "destination": "FNT",
    "origin": "CVG",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TYS",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MCI",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.7777777777777778
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "RDU",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.3559322033898305
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DCA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SDF",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental",
    "destination": "SAT",
    "origin": "EWR",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "ANC",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HSV",
    "origin": "DFW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SMF",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "ATL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.18584070796460178
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ONT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.061046511627906974
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PBI",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.2625
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "FLL",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.15555555555555556
  },
  {
    "nickname": "Northwest",
    "destination": "SRQ",
    "origin": "DTW",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "CLT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HRL",
    "origin": "SAT",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MEI",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "EFD",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000060900103530176,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "TPA",
    "flight_count": 21,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ANC",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "LGB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "LAX",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.23809523809523808
  },
  {
    "nickname": "American Eagle",
    "destination": "JAN",
    "origin": "DFW",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "PBI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.40816326530612246
  },
  {
    "nickname": "American",
    "destination": "SDF",
    "origin": "DFW",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MCI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.3389830508474576
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GTR",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MEM",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCI",
    "origin": "CVG",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.37037037037037035
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "JAN",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 0.9523809523809523
  },
  {
    "nickname": "American Eagle",
    "destination": "BUF",
    "origin": "JFK",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "FLL",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SEA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "SFO",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "TUS",
    "origin": "IAH",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5128205128205128
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "TUS",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BTV",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GRB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0001363002317103939,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "GSP",
    "origin": "CLE",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "IAD",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "BUF",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.14184397163120568
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "PBI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "Southwest",
    "destination": "SAT",
    "origin": "SAN",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BHM",
    "origin": "CVG",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MIA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "HSV",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 0.039525691699604744
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "XNA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.11363636363636363
  },
  {
    "nickname": "Delta",
    "destination": "BWI",
    "origin": "CVG",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "MCO",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.15503875968992248
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DAB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "ALB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SDF",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.5405405405405406
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "CLE",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.1652892561983471
  },
  {
    "nickname": "American",
    "destination": "PBI",
    "origin": "ORD",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.40816326530612246
  },
  {
    "nickname": "Southwest",
    "destination": "ABQ",
    "origin": "LBB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.0012325020952535619,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "TPA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.23529411764705882
  },
  {
    "nickname": "Continental Express",
    "destination": "AVL",
    "origin": "EWR",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "LGB",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BTV",
    "origin": "ORD",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "STL",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "XNA",
    "origin": "DFW",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.11695906432748537
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BWI",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.5882352941176471
  },
  {
    "nickname": "United",
    "destination": "MCO",
    "origin": "MIA",
    "flight_count": 20,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "LAX",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "LAX",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1357142857142857
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "SYR",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MCI",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "PIE",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.16379310344827586
  },
  {
    "nickname": "Northwest",
    "destination": "RNO",
    "origin": "DTW",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BHM",
    "origin": "CLE",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MDW",
    "origin": "EWR",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.15833333333333333
  },
  {
    "nickname": "Comair",
    "destination": "AZO",
    "origin": "CVG",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00005510009367015924,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "LGA",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2676056338028169
  },
  {
    "nickname": "USAir",
    "destination": "GSP",
    "origin": "CLT",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SEA",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.4418604651162791
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AZO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00005510009367015924,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "CVG",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4523809523809524
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PBI",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "GSP",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SBN",
    "origin": "CVG",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "RNO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SRQ",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SDF",
    "origin": "MCO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.35185185185185186
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "MSY",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "LGA",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CLE",
    "origin": "JFK",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.21839080459770116
  },
  {
    "nickname": "Continental Express",
    "destination": "HPN",
    "origin": "EWR",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LEX",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.6129032258064516
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "RNO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "American Eagle",
    "destination": "ALB",
    "origin": "BOS",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SFO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.3064516129032258
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.07421875
  },
  {
    "nickname": "Continental",
    "destination": "SFO",
    "origin": "IAH",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3275862068965517
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "CLE",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.2159090909090909
  },
  {
    "nickname": "Alaska",
    "destination": "SFO",
    "origin": "PSP",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "PNS",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.9047619047619048
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ATW",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SBN",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IAH",
    "origin": "ATL",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.17757009345794392
  },
  {
    "nickname": "Delta",
    "destination": "SYR",
    "origin": "MCO",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9047619047619048
  },
  {
    "nickname": "Continental Express",
    "destination": "TUS",
    "origin": "IAH",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.48717948717948717
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PIT",
    "flight_count": 19,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.1292517006802721
  },
  {
    "nickname": "ATA",
    "destination": "LAS",
    "origin": "IND",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.20224719101123595
  },
  {
    "nickname": "USAir",
    "destination": "MHT",
    "origin": "DCA",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "OKC",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "PSP",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DAY",
    "origin": "ORD",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental",
    "destination": "RSW",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "Continental Express",
    "destination": "MFE",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00044660075922129067,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.20689655172413793
  },
  {
    "nickname": "American",
    "destination": "DAY",
    "origin": "DFW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5806451612903226
  },
  {
    "nickname": "Delta",
    "destination": "OKC",
    "origin": "ATL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MFE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00044660075922129067,
    "carriers as a percentage of route": 0.20689655172413793
  },
  {
    "nickname": "Continental",
    "destination": "ELP",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Comair",
    "destination": "GRB",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0001363002317103939,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAN",
    "origin": "DTW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "SAV",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "GRB",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0001363002317103939,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "GRR",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ABE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "TPA",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AGS",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002137303633416177,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ACY",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000052200088740150856,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ELP",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.3103448275862069
  },
  {
    "nickname": "Comair",
    "destination": "ATW",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00006670011339019277,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "STL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "CVG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6923076923076923
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MSY",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.29508196721311475
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MHT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "RSW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8181818181818182
  },
  {
    "nickname": "American Eagle",
    "destination": "LGA",
    "origin": "MHT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.9473684210526315
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "OGG",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 0.9473684210526315
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MEI",
    "origin": "ATL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00010440017748030171,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DAY",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "American",
    "destination": "OGG",
    "origin": "LAX",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "America West",
    "destination": "IAH",
    "origin": "LAS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BDL",
    "origin": "CLE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.43902439024390244
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "FLL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.5806451612903226
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BHM",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BTV",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DFW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.0972972972972973
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "STL",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "AUS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ACY",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "RIC",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "LAN",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "RIC",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MEI",
    "origin": "LFT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00010440017748030171,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "SBA",
    "origin": "DFW",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00005510009367015924,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "PBI",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SAT",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.72
  },
  {
    "nickname": "Continental Express",
    "destination": "GRR",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "IAH",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CAE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.1267605633802817
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CAE",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GSO",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TUS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "LAS",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.20454545454545456
  },
  {
    "nickname": "Continental Express",
    "destination": "MSN",
    "origin": "EWR",
    "flight_count": 18,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SBA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MHT",
    "origin": "LGA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.8095238095238095
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "AEX",
    "origin": "GTR",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0002291003894706621,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "DTW",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.054313099041533544
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "PBI",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.6071428571428571
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "LAX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.25757575757575757
  },
  {
    "nickname": "United",
    "destination": "DSM",
    "origin": "ORD",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.19318181818181818
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6071428571428571
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "BOS",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.68
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "LGA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.6296296296296297
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "ROC",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.7727272727272727
  },
  {
    "nickname": "Continental Express",
    "destination": "GSO",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9444444444444444
  },
  {
    "nickname": "Continental Express",
    "destination": "ORF",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8095238095238095
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DCA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "MKE",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.5862068965517241
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SFO",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLI",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00004930008381014248,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MSY",
    "origin": "IAD",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TYS",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCI",
    "origin": "EWR",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.4358974358974359
  },
  {
    "nickname": "USAir",
    "destination": "DTW",
    "origin": "DCA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.07112970711297072
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PIT",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.3269230769230769
  },
  {
    "nickname": "Continental",
    "destination": "OMA",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.265625
  },
  {
    "nickname": "Continental Express",
    "destination": "ORD",
    "origin": "IAH",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "ATA",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.12686567164179105
  },
  {
    "nickname": "American Eagle",
    "destination": "SDF",
    "origin": "DFW",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4594594594594595
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "LAX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.03469387755102041
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "JAC",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00024940042398072075,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SFO",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ICT",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "LAX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.13821138211382114
  },
  {
    "nickname": "Delta",
    "destination": "PBI",
    "origin": "EWR",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6296296296296297
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SDF",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.4594594594594595
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "OMA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.25757575757575757
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PHL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1588785046728972
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "PDX",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SAT",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.68
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CAK",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.7083333333333334
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MDW",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.1452991452991453
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "STL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CID",
    "origin": "CVG",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MLI",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00004930008381014248,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAX",
    "origin": "STL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.32075471698113206
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "BHM",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SLC",
    "origin": "LGB",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CHS",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "PNS",
    "origin": "ATL",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8947368421052632
  },
  {
    "nickname": "Northwest",
    "destination": "JAC",
    "origin": "MSP",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0002465004190507124,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "LGA",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.2786885245901639
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "DAY",
    "flight_count": 17,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.5862068965517241
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MEM",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.9411764705882353
  },
  {
    "nickname": "Comair",
    "destination": "ORD",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.12030075187969924
  },
  {
    "nickname": "America West",
    "destination": "DSM",
    "origin": "PHX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LIT",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AUS",
    "origin": "CLE",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "VPS",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0011687019867933776,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SLC",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "United",
    "destination": "ONT",
    "origin": "SFO",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "TPA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.26229508196721313
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DSM",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "SEA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.37209302325581395
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "LAX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1038961038961039
  },
  {
    "nickname": "Comair",
    "destination": "TRI",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5161290322580645
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SJC",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5517241379310345
  },
  {
    "nickname": "Delta",
    "destination": "LIT",
    "origin": "ATL",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DSM",
    "origin": "IAH",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "HOU",
    "origin": "LAX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2077922077922078
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "EWR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.23529411764705882
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DSM",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SJC",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5517241379310345
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "LGA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.17582417582417584
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "LAX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.0453257790368272
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "CID",
    "origin": "ORD",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "OGG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 0.7272727272727273
  },
  {
    "nickname": "Continental",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.06779661016949153
  },
  {
    "nickname": "American Eagle",
    "destination": "ICT",
    "origin": "ORD",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "CID",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MCI",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJC",
    "origin": "ATL",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ORD",
    "origin": "PHX",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.04371584699453552
  },
  {
    "nickname": "Continental Express",
    "destination": "VPS",
    "origin": "IAH",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0011310019227032686,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SLC",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Continental Express",
    "destination": "XNA",
    "origin": "EWR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "EWR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.34782608695652173
  },
  {
    "nickname": "Comair",
    "destination": "STL",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5925925925925926
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "TPA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.17391304347826086
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "IND",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.1797752808988764
  },
  {
    "nickname": "Jetblue",
    "destination": "BUR",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CAK",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6956521739130435
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CID",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SAV",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "AVP",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "PHL",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BUR",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RDU",
    "origin": "LAS",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "DEN",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.21333333333333335
  },
  {
    "nickname": "ATA",
    "destination": "SRQ",
    "origin": "MDW",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "XNA",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "PIT",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "DFW",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.8421052631578947
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LFT",
    "origin": "MEI",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005133008726114835,
    "origin as a percent of all flights": 0.0001073001824103101,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "MCO",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.43243243243243246
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "JFK",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.26666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "MEM",
    "origin": "CVG",
    "flight_count": 16,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CLE",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.1282051282051282
  },
  {
    "nickname": "United",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.32608695652173914
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.11278195488721804
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "PHX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.12195121951219512
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "IAH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BWI",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "GEG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ORF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ACK",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "HPN",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "STL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.5172413793103449
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ORF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Comair",
    "destination": "SGF",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BNA",
    "origin": "DTW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.0949367088607595
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SGF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005365009120515505,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "HOU",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "AVP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "JFK",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.38461538461538464
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "CLT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.15306122448979592
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "MCO",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.16853932584269662
  },
  {
    "nickname": "Continental",
    "destination": "DCA",
    "origin": "CLE",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0949367088607595
  },
  {
    "nickname": "Continental Express",
    "destination": "OMA",
    "origin": "EWR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BHM",
    "origin": "IAH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1388888888888889
  },
  {
    "nickname": "Comair",
    "destination": "MDT",
    "origin": "ATL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.09615384615384616
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.39473684210526316
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TRI",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4838709677419355
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.04032258064516129
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "MDW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.3
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "LGA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MSP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.08875739644970414
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "PIT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "DCA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.14150943396226415
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MSP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "Comair",
    "destination": "MSN",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "BDL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.39473684210526316
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "OMA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "CLE",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GTR",
    "origin": "AEX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0001073001824103101,
    "origin as a percent of all flights": 0.0002320003944006705,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "MDW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "MCO",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.40540540540540543
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "PWM",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MIA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "DEN",
    "origin": "BOS",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.09202453987730061
  },
  {
    "nickname": "United",
    "destination": "CVG",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.10204081632653061
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "CMH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "PWM",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROA",
    "origin": "CLT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BTV",
    "origin": "PIT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "RSW",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.3409090909090909
  },
  {
    "nickname": "Continental Express",
    "destination": "ACK",
    "origin": "EWR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "SLC",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Jetblue",
    "destination": "ATL",
    "origin": "LGB",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "MIA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "COS",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5357142857142857
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "FLL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "IAD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.7894736842105263
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BHM",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0034800059160100573,
    "carriers as a percentage of route": 0.1485148514851485
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "MIA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "IND",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.1388888888888889
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.018315018315018316
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PSP",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "IND",
    "origin": "ORD",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.13043478260869565
  },
  {
    "nickname": "Continental Express",
    "destination": "PSP",
    "origin": "IAH",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROA",
    "origin": "PIT",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "MEM",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "JAX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.39473684210526316
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TRI",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.5357142857142857
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "BUF",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "AUS",
    "origin": "CVG",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.9375
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MSN",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0007859013360322712,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "DCA",
    "origin": "EWR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16304347826086957
  },
  {
    "nickname": "United",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.0203527815468114
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SEA",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SJC",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OAK",
    "origin": "LAX",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.01728110599078341
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GRR",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "LAS",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.17045454545454544
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "STL",
    "flight_count": 15,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ORD",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.09523809523809523
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "ISP",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "OMA",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DSM",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.16279069767441862
  },
  {
    "nickname": "Continental",
    "destination": "DFW",
    "origin": "EWR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.08045977011494253
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "EVV",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000121800207060352,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "MDW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.06167400881057269
  },
  {
    "nickname": "Comair",
    "destination": "PHL",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.16091954022988506
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "BOS",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "IND",
    "origin": "JAX",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CMH",
    "origin": "IAH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.28
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PHL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.16470588235294117
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SAN",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "DTW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.07216494845360824
  },
  {
    "nickname": "Northwest",
    "destination": "BUF",
    "origin": "MSP",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "FLL",
    "origin": "IND",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "EGE",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "SDF",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "OAK",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAD",
    "origin": "IAH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.3684210526315789
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LYH",
    "origin": "ATL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00004060006902011734,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MAF",
    "origin": "HOU",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0012006020410234698,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RIC",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3888888888888889
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "IAD",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.35
  },
  {
    "nickname": "America West",
    "destination": "RNO",
    "origin": "LAS",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.03278688524590164
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CMH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.2978723404255319
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "STL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.4827586206896552
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "ATL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.08484848484848485
  },
  {
    "nickname": "Continental Express",
    "destination": "TUL",
    "origin": "EWR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "ANC",
    "origin": "DTW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SYR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "MIA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "PHX",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.6086956521739131
  },
  {
    "nickname": "Northwest",
    "destination": "EGE",
    "origin": "MSP",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PBI",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.9333333333333333
  },
  {
    "nickname": "United",
    "destination": "CLE",
    "origin": "DEN",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.22580645161290322
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "MIA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "TXK",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0006003010205117349,
    "carriers as a percentage of route": 0.06763285024154589
  },
  {
    "nickname": "Continental Express",
    "destination": "ABQ",
    "origin": "IAH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.10852713178294573
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ROA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "OKC",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BOS",
    "origin": "MKE",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "OKC",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.15217391304347827
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BUF",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "CHA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0020213034362158416,
    "carriers as a percentage of route": 0.5185185185185185
  },
  {
    "nickname": "Northwest",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.1917808219178082
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "PHL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.25925925925925924
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BWI",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.4117647058823529
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SCE",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00004060006902011734,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "PHL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.11666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "GRR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.2978723404255319
  },
  {
    "nickname": "United",
    "destination": "GRR",
    "origin": "ORD",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.3111111111111111
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "GRR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.3111111111111111
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "MCO",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.208955223880597
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "EVV",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Comair",
    "destination": "EVV",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Comair",
    "destination": "CHA",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002018403431285833,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "MDW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ABQ",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.109375
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "SDF",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2916666666666667
  },
  {
    "nickname": "American",
    "destination": "CLT",
    "origin": "MIA",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.16091954022988506
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "CMH",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "BDL",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "GRR",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.30434782608695654
  },
  {
    "nickname": "Comair",
    "destination": "SYR",
    "origin": "CVG",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8235294117647058
  },
  {
    "nickname": "American",
    "destination": "MEM",
    "origin": "DFW",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.358974358974359
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "EWR",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.08139534883720931
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "PIT",
    "flight_count": 14,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "JAN",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MSY",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MDT",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.5652173913043478
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "ATL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8666666666666667
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8666666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "RDU",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PBI",
    "origin": "IAH",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5416666666666666
  },
  {
    "nickname": "Comair",
    "destination": "EWR",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.08227848101265822
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.16049382716049382
  },
  {
    "nickname": "Comair",
    "destination": "SAV",
    "origin": "LGA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.2826086956521739
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SLC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.15476190476190477
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CHA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0020213034362158416,
    "carriers as a percentage of route": 0.48148148148148145
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.1780821917808219
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MDT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.6190476190476191
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "ICT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 0.1368421052631579
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "SEA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PBI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.5416666666666666
  },
  {
    "nickname": "American",
    "destination": "TPA",
    "origin": "STL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.2708333333333333
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "DCA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.11504424778761062
  },
  {
    "nickname": "Jetblue",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.1368421052631579
  },
  {
    "nickname": "American Eagle",
    "destination": "SYR",
    "origin": "BOS",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "JAX",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "MDW",
    "origin": "DFW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.07647058823529412
  },
  {
    "nickname": "Southwest",
    "destination": "BUF",
    "origin": "MDW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DCA",
    "origin": "FLL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.10483870967741936
  },
  {
    "nickname": "American",
    "destination": "DCA",
    "origin": "STL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "MCO",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "TPA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.29545454545454547
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "OKC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "MCO",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "TRI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.4642857142857143
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BUR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JAN",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "COS",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "COS",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "DFW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.07602339181286549
  },
  {
    "nickname": "USAir",
    "destination": "SFO",
    "origin": "BWI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.325
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "SAT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SEA",
    "origin": "HNL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "PHL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.5652173913043478
  },
  {
    "nickname": "Comair",
    "destination": "SCE",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000037700064090108954,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ICT",
    "origin": "DFW",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.13541666666666666
  },
  {
    "nickname": "Comair",
    "destination": "EVV",
    "origin": "ATL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000121800207060352,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.9285714285714286
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "BTR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.0948905109489051
  },
  {
    "nickname": "Continental Express",
    "destination": "LEX",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.05078125
  },
  {
    "nickname": "ATA",
    "destination": "PHX",
    "origin": "IND",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.11403508771929824
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "DEN",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "HNL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.14606741573033707
  },
  {
    "nickname": "Delta",
    "destination": "BTR",
    "origin": "MOB",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "SJC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.4482758620689655
  },
  {
    "nickname": "Continental",
    "destination": "MSP",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.07065217391304347
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "SJC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.041401273885350316
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "ISP",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "DAY",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "BUF",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.7222222222222222
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "PHX",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.015873015873015872
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.41935483870967744
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "IND",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "PHL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "SJC",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "MCI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SWF",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000037700064090108954,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "LIT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "MKE",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "IND",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.09352517985611511
  },
  {
    "nickname": "American Eagle",
    "destination": "COS",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4642857142857143
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "LYH",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00004060006902011734,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SWF",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000037700064090108954,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BOI",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "JFK",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.4482758620689655
  },
  {
    "nickname": "United",
    "destination": "SAT",
    "origin": "ORD",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14942528735632185
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MDT",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.1092436974789916
  },
  {
    "nickname": "Comair",
    "destination": "CMH",
    "origin": "DCA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.35135135135135137
  },
  {
    "nickname": "Continental Express",
    "destination": "HSV",
    "origin": "EWR",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LIT",
    "origin": "MEM",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AVP",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "OMA",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "FLL",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.41935483870967744
  },
  {
    "nickname": "Comair",
    "destination": "CLE",
    "origin": "CVG",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "RDU",
    "flight_count": 13,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.2826086956521739
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "PBI",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SAN",
    "origin": "LAX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AGS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002192403727086336,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BOI",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHA",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.002018403431285833,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.46153846153846156
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "PIT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Continental",
    "destination": "SDF",
    "origin": "IAH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.16216216216216217
  },
  {
    "nickname": "American Eagle",
    "destination": "BUF",
    "origin": "DFW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Continental",
    "destination": "PDX",
    "origin": "IAH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "LGA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "DCA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SEA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "DCA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Comair",
    "destination": "ICT",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SAT",
    "origin": "DEN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SLC",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "LAS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DAY",
    "origin": "ATL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7058823529411765
  },
  {
    "nickname": "Comair",
    "destination": "AVP",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "LAS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.27906976744186046
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "STL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "JAX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORH",
    "origin": "JFK",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00003480005916010057,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PDX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "JFK",
    "origin": "ORH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00003480005916010057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.14814814814814814
  },
  {
    "nickname": "Comair",
    "destination": "IAH",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.1875
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "BOS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.10256410256410256
  },
  {
    "nickname": "USAir",
    "destination": "STT",
    "origin": "CLT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "SFO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Continental",
    "destination": "PBI",
    "origin": "CLE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TXK",
    "origin": "DFW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.05853658536585366
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SDF",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "United",
    "destination": "BOI",
    "origin": "DEN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "SFO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "IAD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.10256410256410256
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CRW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SMF",
    "origin": "IAD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Comair",
    "destination": "RDU",
    "origin": "LGA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ISP",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MDW",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "LGA",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.7058823529411765
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "CLE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "SAN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BGM",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00004060006902011734,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BOI",
    "origin": "IAH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SRQ",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7058823529411765
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DSM",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "TLH",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 0.04743083003952569
  },
  {
    "nickname": "Continental",
    "destination": "PVD",
    "origin": "EWR",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.1935483870967742
  },
  {
    "nickname": "Jetblue",
    "destination": "LGB",
    "origin": "ATL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PVD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "IND",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.3157894736842105
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "CLE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.05084745762711865
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "HOU",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "ORD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "EWR",
    "origin": "MEM",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.35294117647058826
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "SAT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MKE",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2222222222222222
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DAY",
    "origin": "ORD",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ICT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MKE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.41379310344827586
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SAN",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2033898305084746
  },
  {
    "nickname": "Delta",
    "destination": "SDF",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "COS",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MCO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.09375
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SAT",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TLH",
    "origin": "ATL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.047058823529411764
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "RNO",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "STL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.08955223880597014
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "BDL",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DAY",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "LEX",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.3870967741935484
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ABE",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "DAY",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.41379310344827586
  },
  {
    "nickname": "Delta",
    "destination": "SAN",
    "origin": "CVG",
    "flight_count": 12,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PBI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.7857142857142857
  },
  {
    "nickname": "USAir",
    "destination": "ERI",
    "origin": "PIT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000060900103530176,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "BDL",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "IAD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "CMH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "JFK",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.02268041237113402
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "MCO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0718954248366013
  },
  {
    "nickname": "Delta",
    "destination": "BNA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.6875
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ONT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "GSO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RDU",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.39285714285714285
  },
  {
    "nickname": "Comair",
    "destination": "ROA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MIA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.7333333333333333
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "BWI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.07913669064748201
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SAT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ABE",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "LAS",
    "origin": "PIE",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PIT",
    "origin": "JFK",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.2682926829268293
  },
  {
    "nickname": "Jetblue",
    "destination": "SAN",
    "origin": "IAD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.08029197080291971
  },
  {
    "nickname": "American Eagle",
    "destination": "BOS",
    "origin": "SYR",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MCO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.1527777777777778
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ERI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.000060900103530176,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CRW",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ISP",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CMH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.3142857142857143
  },
  {
    "nickname": "Continental Express",
    "destination": "PBI",
    "origin": "IAH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4583333333333333
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "RIC",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.19642857142857142
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BOS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "XNA",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ABE",
    "origin": "MCO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.5789473684210527
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.05314009661835749
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MKE",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.23404255319148937
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "OAK",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.013888888888888888
  },
  {
    "nickname": "Northwest",
    "destination": "OGG",
    "origin": "HNL",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "American Eagle",
    "destination": "PIT",
    "origin": "DFW",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.03313253012048193
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ONT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "United",
    "destination": "MDW",
    "origin": "IAD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "AVP",
    "origin": "PHL",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "BUF",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "HSV",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "PIT",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "BWI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "GSO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.3142857142857143
  },
  {
    "nickname": "Delta",
    "destination": "LEX",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3235294117647059
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SRQ",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.6470588235294118
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "SFO",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.2558139534883721
  },
  {
    "nickname": "Southwest",
    "destination": "ISP",
    "origin": "LAS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "GSO",
    "origin": "ORD",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "AUS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "GSO",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.275
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "OKC",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BNA",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "LAX",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.03806228373702422
  },
  {
    "nickname": "Continental",
    "destination": "ONT",
    "origin": "IAH",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.9166666666666666
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.12790697674418605
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "SMF",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.22916666666666666
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BGM",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000037700064090108954,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "LAX",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.014925373134328358
  },
  {
    "nickname": "Delta",
    "destination": "STL",
    "origin": "CVG",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.4074074074074074
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PBI",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.4583333333333333
  },
  {
    "nickname": "America West",
    "destination": "TUS",
    "origin": "LAS",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.07534246575342465
  },
  {
    "nickname": "Northwest",
    "destination": "GTF",
    "origin": "MSP",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000052200088740150856,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DCA",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.2682926829268293
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "GTF",
    "flight_count": 11,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BTV",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000890301513512573,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.21739130434782608
  },
  {
    "nickname": "United",
    "destination": "BUR",
    "origin": "SFO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "CMH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "LGB",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.00191690325873554,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BOS",
    "origin": "CLE",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.12658227848101267
  },
  {
    "nickname": "Comair",
    "destination": "HSV",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017632029974450957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.02004008016032064
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ELP",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.004170207089352052,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FCA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00004930008381014248,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PBI",
    "origin": "PHL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "STL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.05917159763313609
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "LIT",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SNA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "COS",
    "origin": "DEN",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "ROC",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.14492753623188406
  },
  {
    "nickname": "Comair",
    "destination": "FNT",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BWI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "American",
    "destination": "SAT",
    "origin": "STL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "RSW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "PIT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BIL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOI",
    "origin": "ORD",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002305503919356663,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MDT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "IAH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.15873015873015872
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "CHS",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "HOU",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "AVL",
    "origin": "IAH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "BNA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "OKC",
    "origin": "EWR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "SLC",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "CVG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "COS",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.08196721311475409
  },
  {
    "nickname": "Northwest",
    "destination": "FCA",
    "origin": "MSP",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00004930008381014248,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "BUF",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "BWI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.16393442622950818
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "FLL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.056818181818181816
  },
  {
    "nickname": "Delta",
    "destination": "OAK",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.7142857142857143
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DCA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.08403361344537816
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "CHS",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BWI",
    "origin": "ATL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.08849557522123894
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "MIA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.16393442622950818
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "ORD",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.14285714285714285
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "OAK",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.9090909090909091
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "LAS",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.009624639076034648
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "CLE",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.5263157894736842
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "MLU",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DSM",
    "origin": "DEN",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PBI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "RIC",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "GSO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "GEG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.5882352941176471
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "LIT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 0.04201680672268908
  },
  {
    "nickname": "America West",
    "destination": "ICT",
    "origin": "PHX",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "BNA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.2564102564102564
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "PDX",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BGR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "SFO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "HNL",
    "origin": "LAX",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "Delta",
    "destination": "JAX",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.12048192771084337
  },
  {
    "nickname": "Alaska",
    "destination": "LGB",
    "origin": "SEA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0019198032636655483,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MDW",
    "origin": "DTW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.0392156862745098
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "GSO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ICT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ERI",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000060900103530176,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "PIT",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.02849002849002849
  },
  {
    "nickname": "American Eagle",
    "destination": "MDT",
    "origin": "ORD",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "Northwest",
    "destination": "SLC",
    "origin": "DTW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BIL",
    "origin": "MSP",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "MCO",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0847457627118644
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MLU",
    "origin": "DFW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BGR",
    "origin": "EWR",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "CVG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BDL",
    "origin": "IAH",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ERI",
    "origin": "CVG",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000060900103530176,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "JAX",
    "origin": "LGA",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.37037037037037035
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "PHL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.43478260869565216
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "RSW",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PHL",
    "flight_count": 10,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "DTW",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "BOS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SJC",
    "origin": "MDW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.6428571428571429
  },
  {
    "nickname": "Northwest",
    "destination": "HDN",
    "origin": "MSP",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00003480005916010057,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CHO",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "HSV",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "HDN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00003480005916010057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "PHX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.05357142857142857
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "CLT",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.03345724907063197
  },
  {
    "nickname": "ATA",
    "destination": "DFW",
    "origin": "IND",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.06382978723404255
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.24324324324324326
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MHT",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "United",
    "destination": "EGE",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "American Eagle",
    "destination": "SYR",
    "origin": "DFW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "TUL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "STL",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.9
  },
  {
    "nickname": "United",
    "destination": "TUL",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.21428571428571427
  },
  {
    "nickname": "Northwest",
    "destination": "OMA",
    "origin": "MEM",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BFL",
    "origin": "IAH",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "IND",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.21951219512195122
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "RNO",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CHS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SYR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "TUL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BDL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "MCO",
    "origin": "EWR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "EWR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.24324324324324326
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "BOI",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002305503919356663,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FSD",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00010150017255029334,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "LAX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.008387698042870456
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "STL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.05232558139534884
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "IAD",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.07086614173228346
  },
  {
    "nickname": "Delta",
    "destination": "SDF",
    "origin": "ATL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "GEG",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.6923076923076923
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "BFL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "AUS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.060810810810810814
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "BOS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SJU",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "ABE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "COS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 0.07563025210084033
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "HOU",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "MSY",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Continental Express",
    "destination": "SLC",
    "origin": "IAH",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.2903225806451613
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "BQN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PHX",
    "origin": "CLE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.47368421052631576
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MIA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.6923076923076923
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ABE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "BOS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.05389221556886228
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "LGA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SJC",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.5625
  },
  {
    "nickname": "Comair",
    "destination": "FSD",
    "origin": "CVG",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00010150017255029334,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MKE",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "Continental Express",
    "destination": "PHX",
    "origin": "IAH",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.04918032786885246
  },
  {
    "nickname": "Continental",
    "destination": "PBI",
    "origin": "EWR",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "American",
    "destination": "PVD",
    "origin": "DFW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CHO",
    "origin": "CVG",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "PHL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "HNL",
    "origin": "SEA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TYS",
    "origin": "LGA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BQN",
    "origin": "JFK",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ATL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "LAS",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.10465116279069768
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ALB",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "GRB",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0001363002317103939,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DCA",
    "origin": "DEN",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AVL",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.08571428571428572
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "JAX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.2903225806451613
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "EGE",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ISP",
    "origin": "TPA",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.06716417910447761
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PHX",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.391304347826087
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DTW",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.05921052631578947
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SLC",
    "flight_count": 9,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.28125
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BTR",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.058394160583941604
  },
  {
    "nickname": "American",
    "destination": "ORF",
    "origin": "RIC",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "RSW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3076923076923077
  },
  {
    "nickname": "American",
    "destination": "RSW",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "OAK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "STT",
    "origin": "ATL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "AVL",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0021489036531362102,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "CMI",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000023200039440067048,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SDF",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 0.07547169811320754
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "GRK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00046690079373134933,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "TYS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SJU",
    "origin": "MEM",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BWI",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.06956521739130435
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "RDU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "DCA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "HOU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "GSO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ALB",
    "origin": "MDW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BUF",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "JAN",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MSP",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.03587443946188341
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "MDT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 0.38095238095238093
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "DCA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "LAS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SRQ",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "STT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "TUL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "LGA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.20512820512820512
  },
  {
    "nickname": "Delta",
    "destination": "LEX",
    "origin": "ATL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.04790419161676647
  },
  {
    "nickname": "Continental",
    "destination": "OAK",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BTR",
    "origin": "DFW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.06451612903225806
  },
  {
    "nickname": "United",
    "destination": "ICT",
    "origin": "DEN",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "ICT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "CLT",
    "origin": "DEN",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.06611570247933884
  },
  {
    "nickname": "ATA",
    "destination": "SJU",
    "origin": "MDW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BUF",
    "origin": "DTW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORF",
    "origin": "EWR",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.11428571428571428
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "JFK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "DFW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.05673758865248227
  },
  {
    "nickname": "Continental Express",
    "destination": "AUS",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Northwest",
    "destination": "BNA",
    "origin": "MEM",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ROC",
    "origin": "BOS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.32
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ORF",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.10666666666666667
  },
  {
    "nickname": "Continental Express",
    "destination": "GRK",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00046980079866135773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.03065134099616858
  },
  {
    "nickname": "USAir",
    "destination": "ABE",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.42105263157894735
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "XNA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "IAD",
    "origin": "SJU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "LGA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.1568627450980392
  },
  {
    "nickname": "American",
    "destination": "DEN",
    "origin": "MIA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.049689440993788817
  },
  {
    "nickname": "ATA",
    "destination": "MDW",
    "origin": "SJU",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SEA",
    "origin": "DEN",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.04790419161676647
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SLC",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "HPN",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "GSP",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "PHL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "LAS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.7272727272727273
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.8888888888888888
  },
  {
    "nickname": "Continental Express",
    "destination": "MTJ",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.5333333333333333
  },
  {
    "nickname": "America West",
    "destination": "ELP",
    "origin": "LAS",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.004158607069632018,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.14035087719298245
  },
  {
    "nickname": "Comair",
    "destination": "GSO",
    "origin": "JFK",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "MIA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SRQ",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SAT",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.32
  },
  {
    "nickname": "Southwest",
    "destination": "OAK",
    "origin": "PHL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "PHL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CMI",
    "origin": "CVG",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000023200039440067048,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "DAY",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SDF",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.07547169811320754
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "STT",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AVL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.002108303584116093,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MSY",
    "origin": "CLE",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.26666666666666666
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.17391304347826086
  },
  {
    "nickname": "Comair",
    "destination": "AVP",
    "origin": "ATL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00015080025636043582,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PDX",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MTJ",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.5333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "TLH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PHX",
    "origin": "IAH",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.04371584699453552
  },
  {
    "nickname": "Delta",
    "destination": "ALB",
    "origin": "MCO",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.07017543859649122
  },
  {
    "nickname": "Alaska",
    "destination": "DEN",
    "origin": "SEA",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.047337278106508875
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "DTW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.037914691943127965
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ALB",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.06666666666666667
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CID",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "STL",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "RSW",
    "flight_count": 8,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SHV",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "LGA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.024822695035460994
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MSP",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.030434782608695653
  },
  {
    "nickname": "Comair",
    "destination": "SHV",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CAK",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.30434782608695654
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCO",
    "origin": "JFK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.025547445255474453
  },
  {
    "nickname": "Comair",
    "destination": "HOU",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ORF",
    "origin": "DCA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SJC",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MTJ",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.4666666666666667
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "SFO",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.1794871794871795
  },
  {
    "nickname": "Delta",
    "destination": "PHX",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "DCA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MIA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.18421052631578946
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.026515151515151516
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "SJU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "CAK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.2916666666666667
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "TPA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "LNK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CAK",
    "origin": "ATL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "CMH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.18421052631578946
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "HOU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "ISP",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "Jetblue",
    "destination": "PHX",
    "origin": "JFK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.5833333333333334
  },
  {
    "nickname": "American Eagle",
    "destination": "MSP",
    "origin": "ORD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.030973451327433628
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DEN",
    "origin": "CLE",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.0958904109589041
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "ROA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0004582007789413242,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "PIT",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.11290322580645161
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "ORF",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ROC",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PSP",
    "origin": "SJC",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PHL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.08139534883720931
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "STL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.06666666666666667
  },
  {
    "nickname": "Northwest",
    "destination": "LAX",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.020710059171597635
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "SJU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MIA",
    "origin": "CLE",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.18421052631578946
  },
  {
    "nickname": "Continental",
    "destination": "BNA",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.07954545454545454
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HOU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "PVD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "GEG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 0.4117647058823529
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "HOU",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "STL",
    "origin": "ORD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.04093567251461988
  },
  {
    "nickname": "Jetblue",
    "destination": "RSW",
    "origin": "BOS",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.12727272727272726
  },
  {
    "nickname": "American",
    "destination": "TUL",
    "origin": "LAX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.002862304865918272,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "LIT",
    "origin": "EWR",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0024766042102271576,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "STL",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.07692307692307693
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HPN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "SAT",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.28
  },
  {
    "nickname": "Comair",
    "destination": "BTV",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TLH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FCA",
    "origin": "GTF",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00004930008381014248,
    "origin as a percent of all flights": 0.000052200088740150856,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "XNA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GTF",
    "origin": "FCA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000052200088740150856,
    "origin as a percent of all flights": 0.00004930008381014248,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ISP",
    "origin": "ATL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0037352063498507946,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "JAX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "OMA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.08641975308641975
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "TOL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 0.20588235294117646
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PHX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PWM",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "EWR",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.043209876543209874
  },
  {
    "nickname": "American Eagle",
    "destination": "CID",
    "origin": "DFW",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SJC",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.4375
  },
  {
    "nickname": "Continental",
    "destination": "MTJ",
    "origin": "IAH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.4666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SEA",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.16279069767441862
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "IAD",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.13725490196078433
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DEN",
    "origin": "IND",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.1590909090909091
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TOL",
    "origin": "CVG",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.20588235294117646
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PHX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.5384615384615384
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "SMF",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "LEX",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.043209876543209874
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "TLH",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "MSP",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.024822695035460994
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SFO",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.043478260869565216
  },
  {
    "nickname": "United",
    "destination": "LNK",
    "origin": "DEN",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IAD",
    "origin": "FLL",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.058333333333333334
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "RSW",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.12727272727272726
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "AUS",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "OAK",
    "flight_count": 7,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "IAD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "America West",
    "destination": "OMA",
    "origin": "LAS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.057692307692307696
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "GSP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "SFO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.08108108108108109
  },
  {
    "nickname": "American",
    "destination": "BDL",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BGR",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SJU",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "SLC",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "MSY",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ABE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014790025143042744,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ISP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BGR",
    "origin": "CVG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MCO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0392156862745098
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "GUC",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00002030003451005867,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "BUF",
    "origin": "DFW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "STL",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.011560693641618497
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "EVV",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000121800207060352,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "IND",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.0410958904109589
  },
  {
    "nickname": "Southwest",
    "destination": "JAX",
    "origin": "PHL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.0594059405940594
  },
  {
    "nickname": "ATA",
    "destination": "LAX",
    "origin": "IND",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.07058823529411765
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CAK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "MSY",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PIT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "GEG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PIT",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.05309734513274336
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SRQ",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "American Eagle",
    "destination": "IAH",
    "origin": "DFW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.019672131147540985
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "DCA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "LGA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CHS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "CRW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PIT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.06666666666666667
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "TPA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.03468208092485549
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "SDF",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "TLH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "LAX",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.11320754716981132
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "AUS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "STL",
    "origin": "LAS",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "Delta",
    "destination": "ALB",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MCI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.2222222222222222
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "RSW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "United",
    "destination": "GEG",
    "origin": "ORD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.0967741935483871
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SAT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.01764705882352941
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.46153846153846156
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.020761245674740483
  },
  {
    "nickname": "American",
    "destination": "MSP",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.06976744186046512
  },
  {
    "nickname": "Continental Express",
    "destination": "SRQ",
    "origin": "CLE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "AVP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00014790025143042744,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "HNL",
    "origin": "OGG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.0003190005423009219,
    "carriers as a percentage of route": 0.2727272727272727
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "BDL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.030612244897959183
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "Continental Express",
    "destination": "PWM",
    "origin": "CLE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "ORF",
    "origin": "MDW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SFO",
    "origin": "SNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.03389830508474576
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SAT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.07792207792207792
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "BNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.0379746835443038
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.07692307692307693
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CHS",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SMF",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "BWI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ABQ",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.10344827586206896
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "SFO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "RDU",
    "origin": "ORD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0335195530726257
  },
  {
    "nickname": "Comair",
    "destination": "GRR",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "PHL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "SFO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.037267080745341616
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CRW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "FLL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.03896103896103896
  },
  {
    "nickname": "Delta",
    "destination": "OGG",
    "origin": "LAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Comair",
    "destination": "MIA",
    "origin": "MCO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.16216216216216217
  },
  {
    "nickname": "USAir",
    "destination": "IND",
    "origin": "LGA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.15384615384615385
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "XNA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Continental",
    "destination": "FLL",
    "origin": "LGA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.04225352112676056
  },
  {
    "nickname": "Northwest",
    "destination": "FAI",
    "origin": "MSP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "RNO",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "MCI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.030927835051546393
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "PHX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.01834862385321101
  },
  {
    "nickname": "Northwest",
    "destination": "IAD",
    "origin": "DTW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CRW",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.6
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "LIT",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.002473704205297149,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "STL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.011627906976744186
  },
  {
    "nickname": "Comair",
    "destination": "DSM",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "GEG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.002673804545467727,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "XNA",
    "origin": "ORD",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "ATL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.05309734513274336
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MYR",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Alaska",
    "destination": "SJC",
    "origin": "PSP",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.0006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "GEG",
    "origin": "DEN",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MYR",
    "origin": "EWR",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "MIA",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DSM",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLL",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0013079022234337798,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IND",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "RNO",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "JFK",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.039735099337748346
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "ALB",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "DFW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CLL",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0013166022382238049,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "JAX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Northwest",
    "destination": "JFK",
    "origin": "DTW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "ORF",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "DEN",
    "origin": "PDX",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.04580152671755725
  },
  {
    "nickname": "Northwest",
    "destination": "GRB",
    "origin": "DTW",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0001363002317103939,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MHT",
    "origin": "CVG",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8571428571428571
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FAI",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "SAT",
    "origin": "IAH",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.08955223880597014
  },
  {
    "nickname": "Continental Express",
    "destination": "CRW",
    "origin": "CLE",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SRQ",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.35294117647058826
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "RDU",
    "flight_count": 6,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.03225806451612903
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "BIS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "HLN",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MLU",
    "origin": "IAH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MTJ",
    "origin": "DFW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "Northwest",
    "destination": "ANC",
    "origin": "HNL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "DAY",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.29411764705882354
  },
  {
    "nickname": "Continental Express",
    "destination": "MSY",
    "origin": "IAH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "TPA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "LAX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "RSW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Alaska",
    "destination": "GEG",
    "origin": "LAX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "MTJ",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "CVG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "TUS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSP",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.29411764705882354
  },
  {
    "nickname": "Delta",
    "destination": "HOU",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "STT",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00022040037468063696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "AUS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.07936507936507936
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "LEX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "OKC",
    "origin": "DEN",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "SYR",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.08620689655172414
  },
  {
    "nickname": "Northwest",
    "destination": "SJU",
    "origin": "MSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CMH",
    "origin": "FLL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "GSP",
    "origin": "MCO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.05434782608695652
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "ABY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000017400029580050285,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "IAD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ANC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "BDL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "ROC",
    "origin": "DFW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ATL",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.021367521367521368
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "FNT",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "GSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PVD",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.09259259259259259
  },
  {
    "nickname": "Delta",
    "destination": "RNO",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "ROC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.22727272727272727
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SEA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SNA",
    "origin": "PHL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ATW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "SMF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.017605633802816902
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "PVD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "ROC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ABY",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000017400029580050285,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.8333333333333334
  },
  {
    "nickname": "Comair",
    "destination": "CMH",
    "origin": "CVG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.3125
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "BUF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.07575757575757576
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "RNO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "BIS",
    "origin": "MSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MSY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.18518518518518517
  },
  {
    "nickname": "Continental",
    "destination": "PHL",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.0364963503649635
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "JAX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "Jetblue",
    "destination": "IAD",
    "origin": "SAN",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.04716981132075472
  },
  {
    "nickname": "Comair",
    "destination": "BUF",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MLU",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "HSV",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0017603029925150873,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "MEM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.17857142857142858
  },
  {
    "nickname": "American",
    "destination": "PHX",
    "origin": "STL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.013404825737265416
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "IAD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "SJC",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "GRR",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "Delta",
    "destination": "HNL",
    "origin": "SFO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.11627906976744186
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "STT",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "SMF",
    "origin": "PDX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.027777777777777776
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "OKC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ILM",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00037120063104107277,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "STL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.15625
  },
  {
    "nickname": "Southwest",
    "destination": "SJC",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.35714285714285715
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.0641025641025641
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "SJU",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Comair",
    "destination": "HLN",
    "origin": "SLC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "GSP",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.09433962264150944
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "CMH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "CMH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.050505050505050504
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ABQ",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MSY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.05555555555555555
  },
  {
    "nickname": "American",
    "destination": "OKC",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.060240963855421686
  },
  {
    "nickname": "Comair",
    "destination": "BNA",
    "origin": "MCO",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.025906735751295335
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "SJC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "PWM",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.09433962264150944
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "PWM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.09433962264150944
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "SDF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "CMH",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.05747126436781609
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "IND",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.17857142857142858
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.021645021645021644
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "BUF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.2777777777777778
  },
  {
    "nickname": "Continental Express",
    "destination": "SAT",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PIT",
    "origin": "MIA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.1724137931034483
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MTJ",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.06493506493506493
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "PWM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.625
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "SNA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "DTW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.03048780487804878
  },
  {
    "nickname": "American",
    "destination": "ORF",
    "origin": "STL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "PDX",
    "origin": "SMF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.023255813953488372
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "ORF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATW",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00006670011339019277,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SDF",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "PVD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "Delta",
    "destination": "PHX",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.4166666666666667
  },
  {
    "nickname": "American Eagle",
    "destination": "SAV",
    "origin": "DFW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "XNA",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "ATL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.02717391304347826
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "SMF",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 0.03496503496503497
  },
  {
    "nickname": "United",
    "destination": "SYR",
    "origin": "ORD",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.08620689655172414
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "HOU",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BOS",
    "origin": "EWR",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.03759398496240601
  },
  {
    "nickname": "Comair",
    "destination": "PHL",
    "origin": "JFK",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSP",
    "origin": "PHL",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "MTJ",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.5555555555555556
  },
  {
    "nickname": "USAir",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.06578947368421052
  },
  {
    "nickname": "Continental Express",
    "destination": "TPA",
    "origin": "CLE",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "ILM",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00037120063104107277,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SMF",
    "origin": "MDW",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SRQ",
    "origin": "CVG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.29411764705882354
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "MSY",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "EUG",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "LGA",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.1282051282051282
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "SAV",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "OKC",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJC",
    "origin": "PDX",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.02145922746781116
  },
  {
    "nickname": "Continental",
    "destination": "PIT",
    "origin": "IAH",
    "flight_count": 5,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.029940119760479042
  },
  {
    "nickname": "Northwest",
    "destination": "OGG",
    "origin": "ANC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0003219005472309303,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SJC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.06349206349206349
  },
  {
    "nickname": "ATA",
    "destination": "LAX",
    "origin": "PIE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "GSP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.015384615384615385
  },
  {
    "nickname": "American Eagle",
    "destination": "MTJ",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "SAV",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "GSP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0006989011881320199,
    "carriers as a percentage of route": 0.07547169811320754
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "MIA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "BWI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.01990049751243781
  },
  {
    "nickname": "United",
    "destination": "EUG",
    "origin": "SFO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000011600019720033524,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SMF",
    "origin": "SLC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "BOS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.028985507246376812
  },
  {
    "nickname": "USAir",
    "destination": "SJU",
    "origin": "STT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 0.07407407407407407
  },
  {
    "nickname": "Northwest",
    "destination": "DCA",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "HOU",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LGA",
    "origin": "RDU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.07407407407407407
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CRW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "SJU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Jetblue",
    "destination": "PBI",
    "origin": "LGA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.05263157894736842
  },
  {
    "nickname": "Northwest",
    "destination": "RSW",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MCI",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.020202020202020204
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MIA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "United",
    "destination": "GUC",
    "origin": "DEN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "PIT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.06349206349206349
  },
  {
    "nickname": "America West",
    "destination": "ATL",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.03669724770642202
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "BUF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DAY",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "LEX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 0.024691358024691357
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.05194805194805195
  },
  {
    "nickname": "Comair",
    "destination": "MDW",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "BWI",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.02185792349726776
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "CRP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000524900892331517,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "USAir",
    "destination": "SDF",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0029029049349383893,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.026143790849673203
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "IND",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "United",
    "destination": "TUS",
    "origin": "DEN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "FAI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.00033060056202095545,
    "carriers as a percentage of route": 0.05128205128205128
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.03225806451612903
  },
  {
    "nickname": "Comair",
    "destination": "MHT",
    "origin": "LGA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "Comair",
    "destination": "BTV",
    "origin": "BOS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008961015233725897,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.13793103448275862
  },
  {
    "nickname": "Comair",
    "destination": "CHS",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "ORF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "ORF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "MYR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.14814814814814814
  },
  {
    "nickname": "Comair",
    "destination": "DCA",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.05063291139240506
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "TUS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.03389830508474576
  },
  {
    "nickname": "Continental Express",
    "destination": "MIA",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "Northwest",
    "destination": "PHX",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Continental Express",
    "destination": "XNA",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00091350155295264,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CRP",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.042105263157894736
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.10810810810810811
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "PHL",
    "origin": "IAD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Continental Express",
    "destination": "RSW",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.18181818181818182
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "DAY",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "DAB",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "PIT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "COS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IAH",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "Continental",
    "destination": "PIT",
    "origin": "EWR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.023391812865497075
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "HOU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.025974025974025976
  },
  {
    "nickname": "Southwest",
    "destination": "MSY",
    "origin": "PHL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.05063291139240506
  },
  {
    "nickname": "Continental Express",
    "destination": "DAB",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PVD",
    "origin": "BWI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.008988764044943821
  },
  {
    "nickname": "Jetblue",
    "destination": "PDX",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "HPN",
    "origin": "PIT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0009164015578826485,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "TPA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "HPN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PDX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCI",
    "origin": "DAL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.004819808193673929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SEA",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CAE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 0.015748031496062992
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "HVN",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "DAL",
    "origin": "MCI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004819808193673929,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "MDW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "MDT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0016936028791248944,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PVD",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "DEN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.043010752688172046
  },
  {
    "nickname": "Delta",
    "destination": "COS",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MDW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "COS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0012354021001835702,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "FNT",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LGA",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.01990049751243781
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "RIC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "CAE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.05970149253731343
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "RDU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HVN",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DRO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.000014500024650041906,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "BUR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005660809623376359,
    "carriers as a percentage of route": 0.010309278350515464
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "ORD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.009779951100244499
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SMF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01037041762970997,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "CLE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.03007518796992481
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "HNL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "GSO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 0.06896551724137931
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "MSP",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "MCI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.03508771929824561
  },
  {
    "nickname": "USAir",
    "destination": "BDL",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.020833333333333332
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "XNA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0009251015726726735,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "SJU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "GEG",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0026883045701177693,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.3076923076923077
  },
  {
    "nickname": "Comair",
    "destination": "MIA",
    "origin": "CVG",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.26666666666666666
  },
  {
    "nickname": "America West",
    "destination": "BUR",
    "origin": "LAS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.010610079575596816
  },
  {
    "nickname": "Comair",
    "destination": "ABE",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001476102509374266,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.035398230088495575
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "TYS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MCI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.011826220104574178,
    "carriers as a percentage of route": 0.01834862385321101
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "ORD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.020512820512820513
  },
  {
    "nickname": "Comair",
    "destination": "CRW",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.4
  },
  {
    "nickname": "Continental",
    "destination": "DAB",
    "origin": "EWR",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.16
  },
  {
    "nickname": "American",
    "destination": "DRO",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "TYS",
    "origin": "DFW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "FAI",
    "origin": "ANC",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00033060056202095545,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 0.05
  },
  {
    "nickname": "American",
    "destination": "CLE",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.0380952380952381
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "SDF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.002908704944798406,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GSP",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0007018011930620282,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.07407407407407407
  },
  {
    "nickname": "Northwest",
    "destination": "LGA",
    "origin": "MKE",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ORF",
    "origin": "IAH",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.19047619047619047
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CHS",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.047619047619047616
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Jetblue",
    "destination": "LGA",
    "origin": "PBI",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "ORF",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.21052631578947367
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "FLL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MIA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.3076923076923077
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "PHX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.0380952380952381
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "DTW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.02247191011235955
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "SEA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.8
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BDL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.13333333333333333
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "RSW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PDX",
    "origin": "MDW",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SFO",
    "origin": "IND",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TYS",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0013514022973839055,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.012121212121212121
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "MLB",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "PHL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MTJ",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 0.4444444444444444
  },
  {
    "nickname": "American",
    "destination": "HNL",
    "origin": "STL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007743013163122377,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.03508771929824561
  },
  {
    "nickname": "ATA",
    "destination": "IND",
    "origin": "SFO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MIA",
    "origin": "IND",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "United",
    "destination": "TUS",
    "origin": "ORD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0030856052455289175,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "PVD",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.009685230024213076
  },
  {
    "nickname": "Southwest",
    "destination": "MDW",
    "origin": "PDX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CAE",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "LAX",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "DAB",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "GSO",
    "origin": "DCA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "JFK",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "OAK",
    "origin": "ATL",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014737825054302591,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Comair",
    "destination": "PWM",
    "origin": "LGA",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.5714285714285714
  },
  {
    "nickname": "USAir",
    "destination": "MDT",
    "origin": "MCO",
    "flight_count": 4,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017023028939149197,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "PBI",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.21428571428571427
  },
  {
    "nickname": "Comair",
    "destination": "FWA",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "LAS",
    "origin": "MSY",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.05357142857142857
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "PDX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.010238907849829351
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SAN",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "United",
    "destination": "BDL",
    "origin": "DEN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "FLL",
    "origin": "MCO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.013761467889908258
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "LGA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PVD",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "BWI",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.027522935779816515
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "IAD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "SLC",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "JAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "MOB",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000365400621181056,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Continental Express",
    "destination": "SBN",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MRY",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "BOS",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.2727272727272727
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.02912621359223301
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "SBN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.006185567010309278
  },
  {
    "nickname": "American",
    "destination": "SMF",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010382017649430005,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.02112676056338028
  },
  {
    "nickname": "Alaska",
    "destination": "ANC",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "ATL",
    "origin": "PHX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.06521739130434782
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "FLL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.01485148514851485
  },
  {
    "nickname": "USAir",
    "destination": "STX",
    "origin": "CLT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BIL",
    "origin": "DEN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "JFK",
    "origin": "PSE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MRY",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "PHL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 0.05454545454545454
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "STX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "HTS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "PVD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PHL",
    "origin": "STL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.04225352112676056
  },
  {
    "nickname": "Northwest",
    "destination": "PHL",
    "origin": "MEM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "ALB",
    "origin": "MCO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.02631578947368421
  },
  {
    "nickname": "United",
    "destination": "BNA",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.031578947368421054
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "TPA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.008021390374331552
  },
  {
    "nickname": "America West",
    "destination": "MCI",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.013215859030837005
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BNA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "JAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "SYR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.75
  },
  {
    "nickname": "Continental Express",
    "destination": "DEN",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.025423728813559324
  },
  {
    "nickname": "Continental Express",
    "destination": "PBI",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "HDN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00003480005916010057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.017964071856287425
  },
  {
    "nickname": "American",
    "destination": "MSY",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.02054794520547945
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "SRQ",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MYR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PWM",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "AUS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SJC",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.006060606060606061
  },
  {
    "nickname": "Comair",
    "destination": "TOL",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "HOU",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MKE",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ORF",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OMA",
    "origin": "STL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "DFW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.01744186046511628
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "DCA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.014218009478672985
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "HOU",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "SAN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "IND",
    "origin": "FLL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MHT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "Comair",
    "destination": "TPA",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.06521739130434782
  },
  {
    "nickname": "Delta",
    "destination": "GRR",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "PHL",
    "origin": "RSW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "USAir",
    "destination": "EYW",
    "origin": "FLL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SLC",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.014705882352941176
  },
  {
    "nickname": "USAir",
    "destination": "MYR",
    "origin": "PHL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.0223532380005046,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.019867549668874173
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "CLT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.023809523809523808
  },
  {
    "nickname": "Continental Express",
    "destination": "HDN",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00003480005916010057,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "IAD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "MOB",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0003625006162510476,
    "carriers as a percentage of route": 0.046875
  },
  {
    "nickname": "Comair",
    "destination": "STL",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.0967741935483871
  },
  {
    "nickname": "American",
    "destination": "AUS",
    "origin": "STL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MHT",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "JAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BDL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "GSO",
    "origin": "EWR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0013630023171039391,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.05084745762711865
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.03896103896103896
  },
  {
    "nickname": "American Eagle",
    "destination": "PWM",
    "origin": "LGA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.000951201617042749,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "Continental",
    "destination": "SRQ",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.03
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MKE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.08823529411764706
  },
  {
    "nickname": "Jetblue",
    "destination": "LAS",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "America West",
    "destination": "ORD",
    "origin": "LAS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.0069767441860465115
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MHT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MLB",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IAD",
    "origin": "MEM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "SLC",
    "origin": "LAX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.018072289156626505
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "SEA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "BUR",
    "origin": "DEN",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.005640509588866301,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "CRW",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00008990015283025982,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SHV",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "SRQ",
    "origin": "MSP",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0005655009613516343,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.008823529411764706
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "TOL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "IND",
    "origin": "MIA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.42857142857142855
  },
  {
    "nickname": "USAir",
    "destination": "LGA",
    "origin": "BWI",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ORF",
    "origin": "ORD",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "EWR",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.027777777777777776
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.009433962264150943
  },
  {
    "nickname": "Continental",
    "destination": "LGA",
    "origin": "MCO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "USAir",
    "destination": "MYR",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "SJC",
    "origin": "SLC",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.011072218822771998,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TOL",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00011600019720033524,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ROA",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0004727008035913661,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.024793388429752067
  },
  {
    "nickname": "Southwest",
    "destination": "RSW",
    "origin": "ISP",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.003775806418870912,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "FWA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PIT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.01744186046511628
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "GSO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "CRW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.0375
  },
  {
    "nickname": "Southwest",
    "destination": "AUS",
    "origin": "MDW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DFW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.15789473684210525
  },
  {
    "nickname": "Continental",
    "destination": "MDW",
    "origin": "CLE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.009771986970684038
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SFO",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "PHX",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.008130081300813009
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "SHV",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0011774020015834026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "BNA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "TPA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.061224489795918366
  },
  {
    "nickname": "Delta",
    "destination": "RSW",
    "origin": "IND",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "American Eagle",
    "destination": "LGA",
    "origin": "PWM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "TUS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0030798052356689008,
    "carriers as a percentage of route": 0.031578947368421054
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GRR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.375
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "MSY",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "SJU",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "SAN",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014732025044442576,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "MKE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "Comair",
    "destination": "HTS",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000011600019720033524,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MHT",
    "origin": "EWR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.09375
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "OMA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.03529411764705882
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "SNA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "SAT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.06976744186046512
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "RSW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "VCT",
    "origin": "IAH",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TOL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Jetblue",
    "destination": "PSE",
    "origin": "JFK",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.000008700014790025143,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "DSM",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "EYW",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "MCO",
    "origin": "LGA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "VCT",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.000008700014790025143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.036585365853658534
  },
  {
    "nickname": "Comair",
    "destination": "BGR",
    "origin": "BOS",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0002842004831408213,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.036585365853658534
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "BIL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "TPA",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.075
  },
  {
    "nickname": "Delta",
    "destination": "SYR",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.17647058823529413
  },
  {
    "nickname": "Comair",
    "destination": "DFW",
    "origin": "CVG",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.2
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CAE",
    "origin": "ATL",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00111070188819321,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.011673151750972763
  },
  {
    "nickname": "American",
    "destination": "FLL",
    "origin": "EWR",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.031578947368421054
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "CAE",
    "flight_count": 3,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0010904018536831513,
    "carriers as a percentage of route": 0.011811023622047244
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.013071895424836602
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "SJU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "MSY",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "American",
    "destination": "OMA",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0027463046687179367,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Delta",
    "destination": "ABQ",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.008009813616683148,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BHM",
    "origin": "JAN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0034887059308000823,
    "origin as a percent of all flights": 0.0010324017550829836,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORD",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.006153846153846154
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CLT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 0.007905138339920948
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TYS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0013456022875238888,
    "carriers as a percentage of route": 0.006172839506172839
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "CHS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0013514022973839055,
    "carriers as a percentage of route": 0.043478260869565216
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.02
  },
  {
    "nickname": "Northwest",
    "destination": "TPA",
    "origin": "FNT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "BOS",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.011764705882352941
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "PDX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.021505376344086023
  },
  {
    "nickname": "Southwest",
    "destination": "OKC",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "ONT",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.038461538461538464
  },
  {
    "nickname": "Delta",
    "destination": "ANC",
    "origin": "SEA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.00625
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "SAT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.05714285714285714
  },
  {
    "nickname": "Delta",
    "destination": "MSY",
    "origin": "SLC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "BGM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.000037700064090108954,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PIT",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.020202020202020204
  },
  {
    "nickname": "Delta",
    "destination": "TPA",
    "origin": "PBI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 0.0196078431372549
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MYR",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.029411764705882353
  },
  {
    "nickname": "Comair",
    "destination": "SBN",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "BWI",
    "origin": "RSW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "MYR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Delta",
    "destination": "FLL",
    "origin": "MIA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SLC",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.022727272727272728
  },
  {
    "nickname": "American",
    "destination": "BOS",
    "origin": "AUS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "AUS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TRI",
    "origin": "CLT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0016472028002447604,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "SJU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.017543859649122806
  },
  {
    "nickname": "Southwest",
    "destination": "MHT",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "GRR",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.043478260869565216
  },
  {
    "nickname": "Continental",
    "destination": "MHT",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.004729908040843669,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.04081632653061224
  },
  {
    "nickname": "Continental",
    "destination": "BNA",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.012409121095505862,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.03278688524590164
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "JAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004637107883083401,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PWM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0009454016071827322,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.019801980198019802
  },
  {
    "nickname": "Delta",
    "destination": "PNS",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.10526315789473684
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.006802721088435374
  },
  {
    "nickname": "Jetblue",
    "destination": "TPA",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.044444444444444446
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "RSW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TLH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 0.007905138339920948
  },
  {
    "nickname": "Continental Express",
    "destination": "ORD",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.005115089514066497
  },
  {
    "nickname": "American",
    "destination": "SNA",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.012422360248447204
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "MTJ",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "SJU",
    "origin": "MIA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "PBI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CAK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JAN",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.001035301760012992,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "United",
    "destination": "MTJ",
    "origin": "DEN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "SBN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "JFK",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.004081632653061225
  },
  {
    "nickname": "Continental",
    "destination": "MSP",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.016260162601626018
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "SJC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.011092518857282057,
    "carriers as a percentage of route": 0.008968609865470852
  },
  {
    "nickname": "Continental Express",
    "destination": "RIC",
    "origin": "ORF",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "TPA",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Southwest",
    "destination": "PVD",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Northwest",
    "destination": "BIL",
    "origin": "JAC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000043500073950125713,
    "origin as a percent of all flights": 0.00024940042398072075,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "HRL",
    "origin": "AUS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.0005365009120515505,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "RDU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Comair",
    "destination": "RSW",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "ICT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005307009021915338,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "TRI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 0.0037313432835820895
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "BQK",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000005800009860016762,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CHS",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0013601023121739308,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.046511627906976744
  },
  {
    "nickname": "American",
    "destination": "KOA",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "RDU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.007087612048940483,
    "carriers as a percentage of route": 0.023255813953488372
  },
  {
    "nickname": "Comair",
    "destination": "MKE",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.058823529411764705
  },
  {
    "nickname": "USAir",
    "destination": "CLT",
    "origin": "TRI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.0016414027903847437,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MSY",
    "origin": "BWI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "LAX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.008438818565400843
  },
  {
    "nickname": "American",
    "destination": "RNO",
    "origin": "SAN",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Delta",
    "destination": "SFO",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.0078125
  },
  {
    "nickname": "Comair",
    "destination": "JAX",
    "origin": "BOS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "CLT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.020587134998129496,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Alaska",
    "destination": "LAX",
    "origin": "ANC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.024513741673360845,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCI",
    "origin": "MEM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.011834920119364203,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "ALB",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.003213205462449286,
    "carriers as a percentage of route": 0.016666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "PVD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 0.00847457627118644
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "MDW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "SYR",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.09523809523809523
  },
  {
    "nickname": "American",
    "destination": "DFW",
    "origin": "DSM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.2857142857142857
  },
  {
    "nickname": "Continental",
    "destination": "SLC",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "ABQ",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.008009813616683148,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CVG",
    "origin": "GRR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 0.0425531914893617
  },
  {
    "nickname": "Continental",
    "destination": "RIC",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "American Eagle",
    "destination": "BWI",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0076045627376425855
  },
  {
    "nickname": "Continental",
    "destination": "MEM",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.013333333333333334
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "BGR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "ORF",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "BTR",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0007888013409622797,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.03225806451612903
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SFO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 0.006578947368421052
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "FNT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "RIC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.029411764705882353
  },
  {
    "nickname": "Northwest",
    "destination": "MKE",
    "origin": "PHX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0032857055856994957,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 0.02247191011235955
  },
  {
    "nickname": "United",
    "destination": "ANC",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0021663036827162608,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BUF",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003625006162510476,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.03636363636363636
  },
  {
    "nickname": "Continental",
    "destination": "JAX",
    "origin": "PNS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.13333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "MSY",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Continental",
    "destination": "SFO",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "PNS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0005626009564216259,
    "carriers as a percentage of route": 0.09523809523809523
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MSY",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.009436616042247272,
    "carriers as a percentage of route": 0.02531645569620253
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "LAS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.007547169811320755
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "RNO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.005776809820576695,
    "carriers as a percentage of route": 0.007751937984496124
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Southwest",
    "destination": "HOU",
    "origin": "FLL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00994121690006873,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "TLH",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 0.011363636363636364
  },
  {
    "nickname": "American",
    "destination": "ORD",
    "origin": "OMA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 0.029850746268656716
  },
  {
    "nickname": "Comair",
    "destination": "TPA",
    "origin": "LEX",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.0008845015036525562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "BQK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000005800009860016762,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "ATA",
    "destination": "MIA",
    "origin": "SJU",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0018705031798554057,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.012422360248447204
  },
  {
    "nickname": "USAir",
    "destination": "CAK",
    "origin": "PIT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LGA",
    "origin": "MDW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.010752688172043012
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "TLH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "LEX",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0009019015332326065,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "RIC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "PDX",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SAT",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.005420109214185664,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.03773584905660377
  },
  {
    "nickname": "Continental Express",
    "destination": "CLE",
    "origin": "MYR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "BUF",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0036134061427904427,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "ILM",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00037120063104107277,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "MYR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "LNK",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.000026100044370075428,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BTR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0007946013508222964,
    "carriers as a percentage of route": 0.03125
  },
  {
    "nickname": "American",
    "destination": "MDW",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.010810810810810811
  },
  {
    "nickname": "ATA",
    "destination": "PIE",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.00018560031552053639,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "RIC",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.002749204673647945,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ILM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00037120063104107277,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "LAX",
    "origin": "KOA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.00006960011832020114,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "ORF",
    "origin": "CVG",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.13333333333333333
  },
  {
    "nickname": "ATA",
    "destination": "SFO",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.021052631578947368
  },
  {
    "nickname": "USAir",
    "destination": "BGM",
    "origin": "PIT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00004060006902011734,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "LNK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.000026100044370075428,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DSM",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.021505376344086023
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "ORD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "Comair",
    "destination": "MSP",
    "origin": "SLC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.011299435028248588
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "OKC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MEM",
    "origin": "OMA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006525011092518857,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "MIA",
    "origin": "LGA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.02531645569620253
  },
  {
    "nickname": "Continental",
    "destination": "MYR",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.25
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "IAH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.017241379310344827
  },
  {
    "nickname": "Comair",
    "destination": "BWI",
    "origin": "JFK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.03773584905660377
  },
  {
    "nickname": "Continental",
    "destination": "DFW",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.008849557522123894
  },
  {
    "nickname": "American",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.007692307692307693
  },
  {
    "nickname": "ATA",
    "destination": "LGA",
    "origin": "PIE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.00879571495271542,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.00018850032045054476,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "DTW",
    "origin": "MIA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.014388489208633094
  },
  {
    "nickname": "Northwest",
    "destination": "FNT",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000243600414120704,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "LAS",
    "origin": "MCO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.6666666666666666
  },
  {
    "nickname": "United",
    "destination": "SJU",
    "origin": "JFK",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.017543859649122806
  },
  {
    "nickname": "American",
    "destination": "CMH",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.03773584905660377
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "BWI",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.007220216606498195
  },
  {
    "nickname": "Northwest",
    "destination": "AUS",
    "origin": "MSP",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.028309848126741817,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DSM",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0007366012522221287,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "TPA",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "MIA",
    "origin": "DTW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 0.016129032258064516
  },
  {
    "nickname": "Continental",
    "destination": "ATL",
    "origin": "CLE",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 0.012422360248447204
  },
  {
    "nickname": "Continental",
    "destination": "BWI",
    "origin": "EWR",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.04
  },
  {
    "nickname": "Comair",
    "destination": "IAD",
    "origin": "MLB",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "MEM",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.015037593984962405
  },
  {
    "nickname": "Northwest",
    "destination": "JAC",
    "origin": "BIL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0002465004190507124,
    "origin as a percent of all flights": 0.000043500073950125713,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "MCO",
    "origin": "OKC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ORF",
    "origin": "BOS",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0025752043778474423,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "BOS",
    "origin": "RIC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0027434046637879283,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "MHT",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.05
  },
  {
    "nickname": "Continental",
    "destination": "CLE",
    "origin": "SFO",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.01316602238223805,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "DFW",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.014925373134328358
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "IAD",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "CMH",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.027777777777777776
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "OKC",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0026245044616575847,
    "carriers as a percentage of route": 0.029411764705882353
  },
  {
    "nickname": "Comair",
    "destination": "ICT",
    "origin": "ATL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "OKC",
    "origin": "STL",
    "flight_count": 2,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.028985507246376812
  },
  {
    "nickname": "Northwest",
    "destination": "BZN",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00017690030073051123,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "PHF",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "MDW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.019171932592285407,
    "carriers as a percentage of route": 0.008547008547008548
  },
  {
    "nickname": "United",
    "destination": "LAX",
    "origin": "SNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MLB",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00002900004930008381,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MSP",
    "origin": "FNT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.028330148161251872,
    "origin as a percent of all flights": 0.00024070040919069562,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "SEA",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SEA",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.020300034510058667,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "PDX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "HTS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000011600019720033524,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "FLO",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.000002900004930008381,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "SJT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0006467010993918689,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "JAX",
    "origin": "CLE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0046313078732233845,
    "origin as a percent of all flights": 0.01486832527615297,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MDW",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.01918063260707543,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.008333333333333333
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "LSE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "PVD",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.006855611654539813,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "HPN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00091350155295264,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "EWR",
    "origin": "FLL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.01
  },
  {
    "nickname": "Jetblue",
    "destination": "EWR",
    "origin": "RSW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.022727272727272728
  },
  {
    "nickname": "American",
    "destination": "EWR",
    "origin": "STL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.01185812015880427,
    "carriers as a percentage of route": 0.018518518518518517
  },
  {
    "nickname": "United",
    "destination": "AUS",
    "origin": "IAD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.023809523809523808
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "BOS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.006211180124223602
  },
  {
    "nickname": "Northwest",
    "destination": "EGE",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00006960011832020114,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PNS",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0005568009465616091,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "VPS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0011687019867933776,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "United",
    "destination": "IAD",
    "origin": "ROC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.011402819384792954,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "OKC",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "SBN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00007250012325020953,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "TPA",
    "origin": "LAX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 0.125
  },
  {
    "nickname": "American Eagle",
    "destination": "CMH",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.004970608450034365,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.008333333333333333
  },
  {
    "nickname": "USAir",
    "destination": "DCA",
    "origin": "MYR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01941553300640611,
    "origin as a percent of all flights": 0.0018212030960452633,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "OKC",
    "origin": "TUL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0026303044715176014,
    "origin as a percent of all flights": 0.002853604851128247,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "TPA",
    "origin": "IAD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014154924063370908,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 0.006172839506172839
  },
  {
    "nickname": "Comair",
    "destination": "VPS",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0011310019227032686,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.002680965147453083
  },
  {
    "nickname": "Comair",
    "destination": "ABY",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.000017400029580050285,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "USAir",
    "destination": "BWI",
    "origin": "FLL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.007633587786259542
  },
  {
    "nickname": "American",
    "destination": "COS",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.0012412021100435872,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "MSY",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.009468516096477364,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Continental Express",
    "destination": "ONT",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0076705130398721675,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "United",
    "destination": "ATL",
    "origin": "MIA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.002364066193853428
  },
  {
    "nickname": "United",
    "destination": "DEN",
    "origin": "PIT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.00847457627118644
  },
  {
    "nickname": "Southwest",
    "destination": "FLL",
    "origin": "BDL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.00628721068825817,
    "carriers as a percentage of route": 0.012195121951219513
  },
  {
    "nickname": "Comair",
    "destination": "JFK",
    "origin": "DCA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.034482758620689655
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "ANC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.002169203687646269,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "DAB",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "MLB",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "MEM",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.0136986301369863
  },
  {
    "nickname": "Delta",
    "destination": "LAS",
    "origin": "SNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 0.0038461538461538464
  },
  {
    "nickname": "Delta",
    "destination": "LAX",
    "origin": "PDX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.03211465459491281,
    "origin as a percent of all flights": 0.010428417728310138,
    "carriers as a percentage of route": 0.0038910505836575876
  },
  {
    "nickname": "United",
    "destination": "LGA",
    "origin": "MIA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.022112537591313906,
    "origin as a percent of all flights": 0.006922311767930006,
    "carriers as a percentage of route": 0.011627906976744186
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "IAD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.01126651915308256,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SLC",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.006896551724137931
  },
  {
    "nickname": "Northwest",
    "destination": "TVC",
    "origin": "DTW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.000005800009860016762,
    "origin as a percent of all flights": 0.023666940233798398,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "ATL",
    "origin": "FLO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "EWR",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "American Eagle",
    "destination": "ORD",
    "origin": "SYR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0017313029432150034,
    "carriers as a percentage of route": 0.017241379310344827
  },
  {
    "nickname": "America West",
    "destination": "PSP",
    "origin": "PHX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.0006960011832020114,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "USAir",
    "destination": "RSW",
    "origin": "LGA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.02210673758145389,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Southwest",
    "destination": "STL",
    "origin": "PBI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.0039991067984815575,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ALB",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003213205462449286,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.030303030303030304
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "DFW",
    "origin": "MAF",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.0011861020163734279,
    "carriers as a percentage of route": 0.009259259259259259
  },
  {
    "nickname": "USAir",
    "destination": "MIA",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "Jetblue",
    "destination": "PBI",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.037037037037037035
  },
  {
    "nickname": "Comair",
    "destination": "SAV",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.006060606060606061
  },
  {
    "nickname": "Comair",
    "destination": "DAY",
    "origin": "TPA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0012064020508834865,
    "origin as a percent of all flights": 0.014117223999280799,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DRO",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.000014500024650041906,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "MTJ",
    "origin": "LAX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.03212335460970284,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PFN",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0022881038897766127,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PFN",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0022881038897766127,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "ROC",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.00213150362355616,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.02127659574468085
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "SHV",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0011890020213034362,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.002770083102493075
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "AUS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.006063910308647525,
    "carriers as a percentage of route": 0.045454545454545456
  },
  {
    "nickname": "Continental Express",
    "destination": "EWR",
    "origin": "SRQ",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0005568009465616091,
    "carriers as a percentage of route": 0.041666666666666664
  },
  {
    "nickname": "Continental",
    "destination": "JFK",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MYR",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "PDX",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010445817757890188,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 0.03333333333333333
  },
  {
    "nickname": "Delta",
    "destination": "SLC",
    "origin": "SNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.005565109460686083,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "DEN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Delta",
    "destination": "BWI",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.02085103544676026,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.02631578947368421
  },
  {
    "nickname": "USAir",
    "destination": "CLE",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.004830917874396135
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.0037174721189591076
  },
  {
    "nickname": "Delta",
    "destination": "DAB",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00009280015776026819,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ILE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0012064020508834865,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "DCA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.01936623292259597,
    "carriers as a percentage of route": 0.03571428571428571
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "MKE",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0032828055807694874,
    "carriers as a percentage of route": 0.02127659574468085
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "ONT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "America West",
    "destination": "PHX",
    "origin": "CMH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.028275048067581715,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.03333333333333333
  },
  {
    "nickname": "Continental",
    "destination": "CLT",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 0.0045662100456621
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "ROC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 0.015384615384615385
  },
  {
    "nickname": "Delta",
    "destination": "SNA",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0055709094705461,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.0035087719298245615
  },
  {
    "nickname": "Southwest",
    "destination": "CLE",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.014862525266292953,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.009615384615384616
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "DEN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.02085103544676026,
    "carriers as a percentage of route": 0.0035087719298245615
  },
  {
    "nickname": "Delta",
    "destination": "DFW",
    "origin": "SAT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.005408509194465631,
    "carriers as a percentage of route": 0.0032679738562091504
  },
  {
    "nickname": "Comair",
    "destination": "CLT",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.020627735067149613,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MEM",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.00650181105307879,
    "carriers as a percentage of route": 0.058823529411764705
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ABI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0008613014642124892,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "ONT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.007661813025082143,
    "carriers as a percentage of route": 0.08333333333333333
  },
  {
    "nickname": "Comair",
    "destination": "MCO",
    "origin": "ORF",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0025752043778474423,
    "carriers as a percentage of route": 0.01818181818181818
  },
  {
    "nickname": "United",
    "destination": "ORD",
    "origin": "HNL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.04121777007020912,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.025
  },
  {
    "nickname": "USAir",
    "destination": "PHL",
    "origin": "STT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.022312637931484483,
    "origin as a percent of all flights": 0.00022040037468063696,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "RDU",
    "origin": "BOS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.007125312113030592,
    "origin as a percent of all flights": 0.016811328579258586,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "DAB",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.00008990015283025982,
    "carriers as a percentage of route": 0.5
  },
  {
    "nickname": "Delta",
    "destination": "ATL",
    "origin": "GPT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0008062013705423299,
    "carriers as a percentage of route": 0.004166666666666667
  },
  {
    "nickname": "USAir",
    "destination": "FLL",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.010463217787470239,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.0045871559633027525
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "TXK",
    "origin": "LFT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005974010155817265,
    "origin as a percent of all flights": 0.0005104008676814751,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "DFW",
    "origin": "GUC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.00002030003451005867,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "FAR",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.00023780040426068724,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "GPT",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.0008033013656123215,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 0.0041841004184100415
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "FSD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.00010150017255029334,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "IND",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.006455410974198656,
    "carriers as a percentage of route": 0.007462686567164179
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "MFR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.000002900004930008381,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "BNA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.012432321134945929,
    "carriers as a percentage of route": 0.0125
  },
  {
    "nickname": "Jetblue",
    "destination": "ATL",
    "origin": "OAK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.01404182387110058,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.014720425024722542,
    "carriers as a percentage of route": 0.09090909090909091
  },
  {
    "nickname": "USAir",
    "destination": "MCO",
    "origin": "BWI",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.02081333538267015,
    "carriers as a percentage of route": 0.00411522633744856
  },
  {
    "nickname": "Comair",
    "destination": "SYR",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.001734202948145012,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "MCO",
    "origin": "ORD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.0029069767441860465
  },
  {
    "nickname": "Southwest",
    "destination": "SLC",
    "origin": "HOU",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.007960513532873005,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Atlantic Southeast",
    "destination": "CRP",
    "origin": "ATL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.04573017774130216,
    "destination as a percent of all flights": 0.0005307009021915338,
    "origin as a percent of all flights": 0.05183758812389981,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "RSW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0033901057631797976,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "BZN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.00017980030566051963,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "DTW",
    "origin": "TVC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.02360894013519823,
    "origin as a percent of all flights": 0.000005800009860016762,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "JFK",
    "origin": "LAS",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.010724218231170993,
    "origin as a percent of all flights": 0.032178454703372994,
    "carriers as a percentage of route": 0.010638297872340425
  },
  {
    "nickname": "Comair",
    "destination": "MYR",
    "origin": "ORD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0017864030368851627,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "PBI",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003981706768901507,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.07142857142857142
  },
  {
    "nickname": "USAir",
    "destination": "PIT",
    "origin": "CRW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.013070322219547773,
    "origin as a percent of all flights": 0.00009280015776026819,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American",
    "destination": "SJU",
    "origin": "ORD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.001879203194645431,
    "origin as a percent of all flights": 0.041220670075139125,
    "carriers as a percentage of route": 0.007692307692307693
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "EWR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.015004625507863363,
    "carriers as a percentage of route": 0.014705882352941176
  },
  {
    "nickname": "American",
    "destination": "STL",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10027347046489979,
    "destination as a percent of all flights": 0.011884220203174345,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 0.011363636363636364
  },
  {
    "nickname": "Comair",
    "destination": "BOS",
    "origin": "GSO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.016817128589118602,
    "origin as a percent of all flights": 0.0013630023171039391,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "BRO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.0002726004634207878,
    "carriers as a percentage of route": 0.010638297872340425
  },
  {
    "nickname": "Northwest",
    "destination": "MCO",
    "origin": "GRR",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.01970843350433696,
    "origin as a percent of all flights": 0.0014877025290942994,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "MIA",
    "origin": "TLH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0068701116791898545,
    "origin as a percent of all flights": 0.0008265014050523885,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "PHX",
    "origin": "PIT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.03618336151171457,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 0.009615384615384616
  },
  {
    "nickname": "Comair",
    "destination": "RSW",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.003387205758249789,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.16666666666666666
  },
  {
    "nickname": "United",
    "destination": "SFO",
    "origin": "HNL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09499546149228454,
    "destination as a percent of all flights": 0.013055822194897732,
    "origin as a percent of all flights": 0.0007743013163122377,
    "carriers as a percentage of route": 0.021739130434782608
  },
  {
    "nickname": "Southwest",
    "destination": "BDL",
    "origin": "FLL",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.00626981065867812,
    "origin as a percent of all flights": 0.010495117841700331,
    "carriers as a percentage of route": 0.013513513513513514
  },
  {
    "nickname": "Delta",
    "destination": "CVG",
    "origin": "MHT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.004715408016193628,
    "carriers as a percentage of route": 0.1
  },
  {
    "nickname": "Continental Express",
    "destination": "IAH",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 0.1111111111111111
  },
  {
    "nickname": "Northwest",
    "destination": "IND",
    "origin": "SEA",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.006464110988988681,
    "origin as a percent of all flights": 0.02032903455935875,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "TLH",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.0008352014198424137,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "AUS",
    "origin": "CVG",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.006063910308647525,
    "origin as a percent of all flights": 0.009570016269027657,
    "carriers as a percentage of route": 0.0625
  },
  {
    "nickname": "Comair",
    "destination": "CVG",
    "origin": "ROC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00954681622958759,
    "origin as a percent of all flights": 0.0021257036136961434,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "American Eagle",
    "destination": "DFW",
    "origin": "CMH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046020178234302996,
    "destination as a percent of all flights": 0.05155048763582898,
    "origin as a percent of all flights": 0.004964808440174349,
    "carriers as a percentage of route": 0.008333333333333333
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "HOU",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.009947016909928746,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Southwest",
    "destination": "RNO",
    "origin": "SAN",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.2573783375431738,
    "destination as a percent of all flights": 0.005765209800856662,
    "origin as a percent of all flights": 0.014717525019792534,
    "carriers as a percentage of route": 0.3333333333333333
  },
  {
    "nickname": "USAir",
    "destination": "SBN",
    "origin": "PIT",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.10928088577750582,
    "destination as a percent of all flights": 0.00007250012325020953,
    "origin as a percent of all flights": 0.013168922387168058,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "DFW",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.05156788766540903,
    "carriers as a percentage of route": 0.003968253968253968
  },
  {
    "nickname": "Delta",
    "destination": "DEN",
    "origin": "JFK",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09317715840116929,
    "destination as a percent of all flights": 0.020842335431970234,
    "origin as a percent of all flights": 0.010698118186800918,
    "carriers as a percentage of route": 0.02564102564102564
  },
  {
    "nickname": "Continental",
    "destination": "IAH",
    "origin": "PVD",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.019206732651445506,
    "origin as a percent of all flights": 0.006846911639749788,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "LAS",
    "origin": "DSM",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.03216685468365296,
    "origin as a percent of all flights": 0.0007366012522221287,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "SBA",
    "origin": "SLC",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.00005510009367015924,
    "origin as a percent of all flights": 0.007948913513152972,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Comair",
    "destination": "ATL",
    "origin": "SAV",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.012818021790637044,
    "destination as a percent of all flights": 0.05171288791190945,
    "origin as a percent of all flights": 0.0012151020656735116,
    "carriers as a percentage of route": 0.006024096385542169
  },
  {
    "nickname": "Continental",
    "destination": "EWR",
    "origin": "PHX",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.020703135195329833,
    "destination as a percent of all flights": 0.014897325325453053,
    "origin as a percent of all flights": 0.03618046150678456,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Northwest",
    "destination": "GRR",
    "origin": "MCO",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.09738216554968143,
    "destination as a percent of all flights": 0.0014906025340243078,
    "origin as a percent of all flights": 0.019691033474756908,
    "carriers as a percentage of route": 1
  },
  {
    "nickname": "Continental Express",
    "destination": "ILE",
    "origin": "IAH",
    "flight_count": 1,
    "carrier as a percent of all flights": 0.046614679244954715,
    "destination as a percent of all flights": 0.0012122020607435032,
    "origin as a percent of all flights": 0.019206732651445506,
    "carriers as a percentage of route": 1
  }
]
WITH __stage0 AS (
  SELECT
    group_set,
    CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END as "nickname__5",
    CASE WHEN group_set IN (5,2,4) THEN
      flights."destination"
      END as "destination__5",
    CASE WHEN group_set IN (5,3,4) THEN
      flights."origin"
      END as "origin__5",
    CASE WHEN group_set=5 THEN
      COUNT( 1)
      END as "flight_count__5",
    MAX((CASE WHEN group_set=1 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,1) THEN
      carriers_0."nickname"
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT( 1)
      END)) OVER () as "carrier as a percent of all flights__5",
    MAX((CASE WHEN group_set=2 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      flights."destination"
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT( 1)
      END)) OVER () as "destination as a percent of all flights__5",
    MAX((CASE WHEN group_set=3 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,3,4) THEN
      flights."origin"
      END)*1.0/MAX((CASE WHEN group_set=0 THEN
      COUNT( 1)
      END)) OVER () as "origin as a percent of all flights__5",
    (CASE WHEN group_set=5 THEN
      COUNT( 1)
      END)*1.0/MAX((CASE WHEN group_set=4 THEN
      COUNT( 1)
      END)) OVER (PARTITION BY CASE WHEN group_set IN (5,2,4) THEN
      flights."destination"
      END, CASE WHEN group_set IN (5,3,4) THEN
      flights."origin"
      END) as "carriers as a percentage of route__5"
  FROM '../data/flights.parquet' as flights
   LEFT JOIN '../data/carriers.parquet' AS carriers_0
    ON flights."carrier"=carriers_0."code"
  CROSS JOIN (SELECT UNNEST(GENERATE_SERIES(0,5,1)) as group_set  ) as group_set
  GROUP BY 1,2,3,4
)
SELECT
  "nickname__5" as "nickname",
  "destination__5" as "destination",
  "origin__5" as "origin",
  MAX(CASE WHEN group_set=5 THEN "flight_count__5" END) as "flight_count",
  MAX(CASE WHEN group_set=5 THEN "carrier as a percent of all flights__5" END) as "carrier as a percent of all flights",
  MAX(CASE WHEN group_set=5 THEN "destination as a percent of all flights__5" END) as "destination as a percent of all flights",
  MAX(CASE WHEN group_set=5 THEN "origin as a percent of all flights__5" END) as "origin as a percent of all flights",
  MAX(CASE WHEN group_set=5 THEN "carriers as a percentage of route__5" END) as "carriers as a percentage of route"
FROM __stage0
WHERE group_set NOT IN (0,1,2,3,4)
GROUP BY 1,2,3
ORDER BY 4 desc NULLS LAST